#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../assets/home-hero-background.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	animation: none;
	transition:
		transform 0.8s ease-in-out,
		opacity 0.8s ease-in-out;
}

#preloader.shrink {
	transform: translateY(-100%);
	opacity: 1;
}

#preloader .logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	animation: fadeInLogo 0.3s ease-in 0.1s forwards;
}

@keyframes fadeInLogo {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

#preloader .logo img {
	width: auto;
	height: auto;
	max-width: 210px;
	object-fit: contain;
	object-position: center;
	transform: scale(1);
	will-change: transform;
	animation: bounce 1.8s infinite;
}

/* Bounce animacja */
@keyframes bounce {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.01);
	}
}

/* Gdy content widoczny */
body.content-visible {
	overflow-y: auto;
}

/* Transparent header (layout like provided screenshot) */
.site-header.site-header--transparent {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: transparent;
	color: var(--white-color);
	font-size: 1.2rem;
}

/* About page template header overrides */
.site-header.site-header--transparent.site-header--about:not(.site-header--sticky) {
	position: relative;
	color: var(--company-color);
	background: var(--main-background-color);
	margin-bottom: 1rem;
}

.site-header__row {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 2.4rem 0;
}

.site-header__logo {
	position: absolute;
	left: 45%;
	transform: translateX(-50%);
	/* display: flex;
	justify-content: center; */
}

.site-header__logo-img {
	display: block;
	width: 16rem;
	height: auto;
}

.site-header__nav {
	min-width: 0;
}

.site-header__nav--right .site-header__menu {
	justify-content: center;
	margin-left: 9rem;
}

.site-header__nav--right,
.site-header__nav--left {
	display: flex;
	align-items: center;
	gap: 3.2rem;
	padding-top: 0.2%;
}

.site-header__nav--left {
	justify-content: flex-start;
	flex: 1;
}

.site-header__nav--right {
	justify-content: center;
	flex: 1;
}

.site-header__menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 5rem;
	margin: 0;
	padding: 0;
}

.site-header__menu a {
	color: var(--white-color);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: var(--semibold-font-weight);
	white-space: nowrap;
}

.site-header--about .site-header__menu a {
	color: var(--company-color);
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible {
	opacity: 0.85;
}

.site-header__cta {
	font-size: 1rem;
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 2.6rem;
	border-radius: 9999px;
	background: var(--company-color);
	border: 1px solid var(--white-color);
	color: var(--white-color);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: var(--base-font-weight);
	white-space: nowrap;
}

.site-header__cta-strong {
	font-weight: var(--semibold-font-weight);
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
	filter: brightness(1.05);
}

/* Sticky header on scroll (desktop only) - applies to all pages */
@media (min-width: 1025px) {
	/* Header becomes fixed after scrolling down 40vh, with smooth slide-in animation */
	.site-header.site-header--sticky {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
		transform: translateY(-100%);
		background: var(--white-color);
		color: var(--company-color);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		transition:
			transform 0.4s ease-out,
			background 0.3s ease,
			color 0.3s ease,
			box-shadow 0.3s ease;
	}

	/* Show sticky header with slide-in animation */
	.site-header.site-header--sticky.site-header--visible {
		transform: translateY(0);
	}

	/* Override transparent background when sticky is active */
	.site-header.site-header--sticky.site-header--transparent {
		background: var(--white-color);
		color: var(--company-color);
	}

	/* Override about page header background when sticky is active */
	.site-header.site-header--sticky.site-header--about {
		background: var(--white-color);
		color: var(--company-color);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	/* Menu links color when sticky is active */
	.site-header.site-header--sticky .site-header__menu a {
		color: var(--company-color);
		transition: color 0.3s ease;
	}

	/* CTA button when sticky is active */
	.site-header.site-header--sticky .site-header__cta {
		background: var(--company-color);
		border: 1px solid var(--company-color);
		color: var(--white-color);
		transition:
			background 0.3s ease,
			border-color 0.3s ease,
			color 0.3s ease;
	}
}

/* Hide mobile header by default (desktop) */
.site-header__mobile,
.site-header__mobile-menu {
	display: none;
}

/* Footer (desktop) */
.site-footer {
	background: var(--main-background-color);
	color: var(--company-color);
	font-size: 0.9rem;
	/* max-height: 50vh; */
	padding-top: 6rem;
	border-top: 1px solid var(--company-color);
	padding-bottom: 12rem;
}

.site-footer__wrapper {
	display: flex;
	align-items: start;
	gap: 4rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	column-gap: 6rem;
	align-items: start;
	flex: 1;
	margin-right: 2rem;
}

.site-footer__col--logo {
	display: flex;
	align-items: flex-start;
}

.site-footer__logo-img {
	display: block;
	width: auto;
	object-fit: contain;
	height: 100%;
	max-height: 6rem;
}

.site-footer__col--info {
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
}

.site-footer__col--menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 2.2rem;
}

.site-footer__address {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: var(--semibold-font-weight);
	line-height: 1.4;
	font-size: 1rem;
}

.site-footer__address-line:first-child {
	width: 90%;
}

.site-footer__phone {
	font-family: var(--font-family-primary);
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	align-self: flex-start;
	padding: 0.7rem 4.6rem 0.7rem 2rem;
	border-radius: 9999px;
	background: var(--company-color);
	font-weight: var(--semibold-font-weight);
	color: var(--white-color);
	text-decoration: none;
	letter-spacing: 0.02em;
	font-size: 1rem;
	text-wrap: nowrap;
}

.site-footer__phone:hover,
.site-footer__phone:focus-visible {
	filter: brightness(1.05);
}

.site-footer__hours {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.35;
	font-size: 1.2rem;
}

.site-footer__hours-row {
	display: flex;
	flex-direction: column;
}

.site-footer__hours-times {
	text-wrap: nowrap;
}

.site-footer__hours-days {
	font-weight: var(--semibold-font-weight);
	font-size: 1.2rem;
	text-wrap: nowrap;
}

.site-footer__nav {
	width: 100%;
}

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-footer__menu a {
	font-family: var(--font-family-primary);
	font-size: 1.2rem;
	color: var(--company-color);
	text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
	opacity: 0.85;
}

.site-footer__newsletter-container {
	flex-shrink: 0;
	min-width: 0;
}

.site-footer__col--newsletter {
	position: relative;
	padding-left: 4rem;
}

.site-footer__col--newsletter::before {
	content: '';
	position: absolute;
	left: 0;
	top: calc(clamp(4rem, 6.5vh, 10rem) * -1);
	bottom: calc(clamp(4rem, 20vh, 10rem) * -1);
	width: 1px;
	background: var(--company-color);
	opacity: 0.6;
}

.site-footer__newsletter-title {
	font-family: 'Forum';
	font-size: 4rem;
	line-height: 1.1;
	font-weight: var(--light-font-weight);
	letter-spacing: 0.01em;
	margin: 0 0 1.6rem;
}

.site-footer__newsletter-text {
	font-family: var(--font-family-primary);
	margin: 0 0 2.4rem;
	max-width: 46rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.45;
	font-size: 0.9rem;
	font-weight: var(--base-font-weight);
}

.site-footer__newsletter-form {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.site-footer__newsletter-input {
	flex: 1;
	min-width: 0;
	height: 4.4rem;
	padding: 0 2rem;
	border-radius: 9999px;
	border: 2px solid var(--company-color);
	background: transparent;
	color: var(--company-color);
	font: inherit;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	outline: none;
	font-size: 0.9rem;
}

.site-footer__newsletter-input::placeholder {
	font-family: var(--font-family-primary);
	font-weight: var(--semibold-font-weight);
	color: var(--company-color);
	opacity: 1;
	font-size: 0.9rem;
}

.site-footer__newsletter-submit {
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 9999px;
	border: none;
	background: transparent;
	color: var(--company-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.9;
}

.site-footer__newsletter-submit span {
	opacity: 0.7;
}

.site-footer__newsletter-submit:hover,
.site-footer__newsletter-submit:focus-visible {
	opacity: 0.85;
}

.site-footer__newsletter-input:focus-visible + .site-footer__newsletter-submit span {
	opacity: 1;
}

/* CTA Questions Section */
.cta-questions-section {
	position: relative;
	height: 50vh;
	background-image: url('../assets/home-cta-section-bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 0;
}

.cta-questions-section__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 2rem;
	width: 100%;
	max-width: 1450px;
}

.cta-questions-section__title {
	font-family: var(--font-family-primary);
	font-size: 1.8rem;
	color: var(--white-color);
	font-weight: var(--base-font-weight);
	margin: 0;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-questions-section__text {
	font-family: var(--font-family-primary);
	font-size: 1.2rem;
	color: var(--white-color);
	font-weight: var(--light-font-weight);
	margin: 0;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-questions-section__cta {
	width: fit-content;
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 3.5rem 0.9rem 3.5rem;
	border-radius: 9999px;
	background: var(--company-color);
	border: 1px solid var(--white-color);
	color: var(--white-color);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: var(--base-font-weight);
	font-family: var(--font-family-primary);
	white-space: nowrap;
	margin-top: 4rem;
}

.cta-questions-section__cta-strong {
	font-weight: var(--semibold-font-weight);
	letter-spacing: -0.02em;
}

.cta-questions-section__cta:hover,
.cta-questions-section__cta:focus-visible {
	filter: brightness(1.05);
}

/* CTA Best Treatment Section */
.cta-best-treatment {
	position: relative;
	min-height: 50vh;
	background-image: url('../assets/home-cta-section-bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 0;
	margin-bottom: 10rem;
}

.cta-best-treatment__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 2rem;
	width: 100%;
	max-width: 1450px;
}

.cta-best-treatment__title {
	font-family: 'Forum';
	font-size: 4rem;
	color: var(--white-color);
	font-weight: var(--light-font-weight);
	margin: 0;
	line-height: 0.8;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-best-treatment__text {
	font-family: var(--font-family-primary);
	font-size: 1.2rem;
	color: var(--white-color);
	font-weight: var(--base-font-weight);
	margin: 0;
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-best-treatment__cta {
	width: fit-content;
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 3.5rem 0.9rem 3.5rem;
	border-radius: 9999px;
	background: var(--company-color);
	border: 1px solid var(--white-color);
	color: var(--white-color);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: var(--base-font-weight);
	font-family: var(--font-family-primary);
	white-space: nowrap;
	margin-top: 4rem;
}

.cta-best-treatment__cta-strong {
	font-weight: var(--semibold-font-weight);
	letter-spacing: -0.02em;
}

.cta-best-treatment__cta:hover,
.cta-best-treatment__cta:focus-visible {
	filter: brightness(1.05);
}

h2.cta-questions-section__title {
	font-size: 4rem;
	line-height: 0.8;
	margin-bottom: 3.2rem;
}

/* Mobile and Tablet Header (max-width: 1024px) */
@media (max-width: 1024px) {
	/* Hide desktop header elements */

	.site-header__nav--left,
	.site-header__nav--right,
	.site-header__logo,
	.site-header__cta {
		display: none;
	}

	.site-header__row {
		display: none;
	}

	/* Mobile Header */
	.site-header__mobile {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 2rem 3%;
	}

	.site-header__mobile-logo {
		display: flex;
		align-items: center;
	}

	.site-header__mobile-logo-img {
		display: block;
		width: 13rem;
		height: auto;
	}

	/* Hamburger Toggle Button */
	.site-header__mobile-toggle {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 3rem;
		height: 2.4rem;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		z-index: 101;
		position: relative;
	}

	.site-header__mobile-toggle span {
		display: block;
		width: 100%;
		height: 0.4rem;
		background: var(--white-color);
		transition: all 0.3s ease;
		border-radius: 2px;
	}

	.site-header--about .site-header__mobile-toggle span {
		background: var(--company-color);
	}

	.site-header__mobile-toggle[aria-expanded='true'] span {
		background: var(--company-color);
	}

	.site-header__mobile-toggle[aria-expanded='true'] span:nth-child(1) {
		transform: rotate(45deg) translate(0.64rem, 0.64rem);
	}

	.site-header__mobile-toggle[aria-expanded='true'] span:nth-child(2) {
		opacity: 0;
	}

	.site-header__mobile-toggle[aria-expanded='true'] span:nth-child(3) {
		transform: rotate(-45deg) translate(0.8rem, -0.8rem);
	}

	/* Mobile Menu */
	.site-header__mobile-menu {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--main-background-color);
		z-index: 100;
		padding: 8rem 2rem 4rem;
		overflow-y: auto;
		transform: translateX(100%);
		transition:
			transform 0.3s ease,
			opacity 0.3s ease,
			visibility 0.3s ease;
		opacity: 0;
		visibility: hidden;
	}

	/* Mobile Menu Logo */
	.site-header__mobile-menu-logo {
		position: absolute;
		top: 2rem;
		left: 3%;
		z-index: 1;
	}

	.site-header__mobile-menu-logo-img {
		display: block;
		width: 13rem;
		height: auto;
	}

	.site-header__mobile-menu.toggled {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}

	.site-header__mobile-menu-list {
		list-style: none;
		margin-top: 7%;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 2.4rem;
		font-family: "Forum", serif;
		font-size: 2rem;
	}

	.site-header__mobile-menu-list--left {
		margin-bottom: 3.2rem;
	}

	.site-header__mobile-menu-list--right {
		margin-bottom: 0;
	}

	/* Primary menu in mobile menu (uses site-header__menu class) */
	.site-header__mobile-menu .site-header__menu {
		list-style: none;
		margin: 0 0 3.2rem 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		gap: 2.4rem;
	}

	.site-header__mobile-menu-list li,
	.site-header__mobile-menu .site-header__menu li {
		margin: 0;
		position: relative;
	}

	.site-header__mobile-menu-list a,
	.site-header__mobile-menu .site-header__menu a {
		color: var(--company-color);
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		font-weight: 500;
		font-size: 2rem;
		display: block;
		padding: 0.8rem 0;
	}

	.site-header__mobile-menu-list a:hover,
	.site-header__mobile-menu-list a:focus-visible,
	.site-header__mobile-menu .site-header__menu a:hover,
	.site-header__mobile-menu .site-header__menu a:focus-visible {
		opacity: 0.85;
	}

	/* Menu items with submenu */
	.site-header__mobile-menu-list .menu-item-has-children,
	.site-header__mobile-menu .site-header__menu .menu-item-has-children {
		width: 60%;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	/* Ensure submenu takes full width */
	.site-header__mobile-menu-list .menu-item-has-children > .sub-menu,
	.site-header__mobile-menu .site-header__menu .menu-item-has-children > .sub-menu {
		flex-basis: 100%;
	}

	/* Toggle button for submenu */
	.site-header__mobile-menu-list .menu-item-has-children > a,
	.site-header__mobile-menu .site-header__menu .menu-item-has-children > a {
		flex: 1;
		min-width: 0;
	}

	/* Toggle button for submenu - added via JavaScript */
	.site-header__mobile-menu-list .menu-item-has-children .submenu-toggle,
	.site-header__mobile-menu .site-header__menu .menu-item-has-children .submenu-toggle {
		width: 3rem;
		height: 3rem;
		flex-shrink: 0;
		display: flex !important;
		align-items: center;
		justify-content: center;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		font-size: 2rem;
		font-weight: var(--base-font-weight);
		line-height: 1;
		color: var(--company-color) !important;
		transition: opacity 0.3s ease;
		margin-left: 1rem;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.site-header__mobile-menu-list .menu-item-has-children .submenu-toggle:hover,
	.site-header__mobile-menu .site-header__menu .menu-item-has-children .submenu-toggle:hover,
	.site-header__mobile-menu-list .menu-item-has-children .submenu-toggle:focus-visible,
	.site-header__mobile-menu .site-header__menu .menu-item-has-children .submenu-toggle:focus-visible {
		opacity: 0.7;
		outline: none;
	}

	/* Submenu styles */
	.site-header__mobile-menu-list .sub-menu,
	.site-header__mobile-menu .site-header__menu .sub-menu {
		list-style: none;
		margin: 0;
		padding: 0;
		padding-left: 1.5rem;
		padding-top: 1rem;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition:
			max-height 0.5s ease-in-out,
			opacity 0.5s ease-in-out,
			padding-top 0.5s ease-in-out;
		width: 100%;
		flex-basis: 100%;
	}

	.site-header__mobile-menu-list .menu-item-has-children.toggled > .sub-menu,
	.site-header__mobile-menu .site-header__menu .menu-item-has-children.toggled > .sub-menu {
		max-height: 500px;
		opacity: 1;
		padding-top: 1rem;
	}

	/* Submenu links */
	.site-header__mobile-menu-list .sub-menu a,
	.site-header__mobile-menu .site-header__menu .sub-menu a {
		font-size: 1.2rem;
		padding: 0.6rem 0;
		color: var(--company-color);
		opacity: 0.9;
	}

	.site-header__mobile-menu-list .sub-menu a:hover,
	.site-header__mobile-menu-list .sub-menu a:focus-visible,
	.site-header__mobile-menu .site-header__menu .sub-menu a:hover,
	.site-header__mobile-menu .site-header__menu .sub-menu a:focus-visible {
		opacity: 1;
	}

	/* Mobile CTA */
	.site-header__mobile-cta {
		margin-top: 3.2rem;
		font-size: 1.6rem;
		font-family: 'Forum';
		display: inline-flex;
		gap: 0.5rem;
		align-items: center;
		justify-content: center;
		padding: 0.8rem 2.6rem;
		border-radius: 9999px;
		background: var(--company-color);
		border: 1px solid var(--company-color);
		color: var(--white-color);
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		font-weight: 300;
		white-space: nowrap;
	}

	.site-header__mobile-cta-strong {
		font-weight: var(--semibold-font-weight);
	}

	.site-header__mobile-cta:hover,
	.site-header__mobile-cta:focus-visible {
		filter: brightness(1.05);
	}

	/* About page mobile header adjustments */
	.site-header--about .site-header__mobile-logo-img {
		content: url('../assets/MANDARIN_CLINIC_LOGO_CIEMNE.svg');
	}

	/* .site-footer__wrapper {
		flex-direction: column;
	} */

	.site-footer__grid {
		width: 100%;
		grid-template-columns: 1fr 1fr 1fr;
		align-items: start;
		column-gap: 3rem;
	}

	.site-footer__logo-img {
		max-height: 3rem;
	}

	.site-footer__col--newsletter::before {
		display: none;
	}
	.site-footer__col--newsletter {
		padding-left: 0;
	}

	.site-footer__newsletter-text {
		max-width: 40rem;
	}

	.cta-best-treatment {
		min-height: auto;
		padding: 5rem 0;
		margin-bottom: 5rem;
	}
}

/* Medium tablets - reduce footer grid gap to prevent overflow */
@media (max-width: 900px) {
	.site-footer__grid {
		column-gap: 2rem;
	}

	.site-footer__newsletter-text {
		max-width: 26rem;
	}

	.site-footer__newsletter-title {
		font-size: 3rem;
	}
}

@media (max-width: 480px) {
	.site-footer__logo-img {
		max-height: 6rem;
	}
	.site-footer__wrapper {
		flex-direction: column;
		margin-bottom: 1rem;
	}

	.site-footer__grid {
		width: 100%;
		grid-template-columns: 1fr;
		row-gap: 2rem;
	}

	.site-footer__address-line:first-child {
		width: 100%;
	}

	.site-footer__col--menu {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	#menu-footer_menu_bottom {
		align-items: flex-end;
		width: 100%;
	}

	.menu-item-privacy-policy {
		width: 100%;
		text-align: right;
	}

	.site-footer__hours-row {
		flex-direction: row;
		justify-content: space-between;
	}

	.site-footer__newsletter-text {
		max-width: 95%;
	}

	.cta-best-treatment__title {
		font-family: 'Forum';
		font-size: 3rem;
		color: var(--white-color);
		font-weight: var(--light-font-weight);
		margin: 0;
		line-height: 0.8;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.cta-best-treatment__text {
		font-size: 0.9rem;
	}

	.cta-best-treatment__text span:first-child {
		text-wrap: nowrap;
	}
}

/* Scroll Animation - Intersection Observer */
/* Initial state: element hidden below viewport */
.observed {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.6s ease-out,
		transform 0.6s ease-out;
	will-change: opacity, transform;
}

/* Active state: element visible after entering viewport */
.observed--active {
	opacity: 1;
	transform: translateY(0);
	will-change: auto;
}
