html {
	scroll-behavior: smooth;
}

.section {
	width: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

/* Remove all block gaps within main content */
.wp-block-group > *,
.wp-block-post-content > * {
	margin-top: 0;
	margin-bottom: 0;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* ── Header / Navigation ── */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: transparent;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 24px;
}

.site-header__logo img {
	display: block;
	width: 264px;
	height: 26px;
	object-fit: contain;
}

/* Nav links */
.site-header__nav {
	display: flex;
	align-items: center;
}

.site-header__links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header__links a {
	font-family: var(--wp--preset--font-family--body);
	font-size: 14px;
	font-weight: 500;
	color: var(--wp--preset--color--text-label);
	text-decoration: none;
	line-height: 20px;
	transition: color 0.2s ease;
}

.site-header__links a:hover {
	color: var(--wp--preset--color--primary-alt);
}

/* CTA button — add class "is-style-cta" on a menu item in Apparence > Menus */
.site-header__links .is-style-cta > a {
	background-color: var(--wp--preset--color--primary-alt);
	color: #fff;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
}

.site-header__links .is-style-cta > a:hover {
	background-color: var(--wp--preset--color--primary);
	color: #fff;
}

@media (max-width: 768px) {
	.site-header__links {
		display: none;
	}

	.site-header__inner {
		padding: 12px 16px;
	}

	.site-footer.wp-block-group {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.site-header__logo img {
		width: auto;
		height: 16px;
	}

	.site-header__links .is-style-cta > a {
		padding: 8px 14px;
		font-size: 12px;
	}
}

/* ── Common section patterns ── */

.section-label {
	display: block;
	font-family: var(--wp--preset--font-family--body);
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2.8px;
	text-transform: uppercase;
	color: var(--wp--preset--color--accent-light);
}

/* ── Footer ── */

.site-footer.wp-block-group {
	padding-left: 24px !important;
	padding-right: 24px !important;
}

.site-footer .wp-block-column > * {
	margin-left: 0;
	margin-right: 0;
}

.site-footer .wp-block-image {
	margin: 0;
	max-width: fit-content;
}

.site-footer .wp-block-image img {
	display: block;
}

.site-footer__badges {
	justify-content: flex-start;
}

.site-footer__badges .wp-block-image img {
	height: 48px;
	width: auto !important;
}

ul.site-footer__list {
	list-style: none;
	padding-inline-start: 0;
}

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

.site-footer a:hover {
	text-decoration: underline;
}

/* ── Shadows ── */
:root {
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-btn: 0 10px 15px -3px rgba(0, 30, 64, 0.1), 0 4px 6px -4px rgba(0, 30, 64, 0.1);
	--color-text-on-dark: #eaeaea;
}
