/* ==========================================================================
   La Berchere — Custom Theme Styles
   ========================================================================== */

/* ── Reset & Base ─────────────────────────────────────────────────────────── */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #1c1917;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #2563eb; }

/* ── Layout helpers ───────────────────────────────────────────────────────── */

.lb-container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.lb-container--narrow {
	max-width: 800px;
}

.lb-grid {
	display: grid;
	gap: 3rem;
}

.lb-grid--2col { grid-template-columns: 1fr 1fr; }

.lb-grid--vcenter { align-items: center; }

.lb-grid--news {
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: start;
}

.lb-grid--contact {
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: start;
}

@media (max-width: 900px) {
	.lb-grid--2col,
	.lb-grid--news,
	.lb-grid--contact { grid-template-columns: 1fr; }
}

/* ── Typography helpers ───────────────────────────────────────────────────── */

.lb-heading {
	font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif);
	line-height: 1.15;
	margin: 0;
}

.lb-heading--page {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 700;
	color: #1c1917;
}

.lb-heading--section {
	font-size: clamp(1.875rem, 3.5vw, 2.75rem);
	font-weight: 700;
	color: #1c1917;
	margin-bottom: 1.25rem;
}

.lb-heading--aircraft {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: #1c1917;
	margin-bottom: 1.25rem;
}

.lb-heading--cta {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.lb-body {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #78716c;
	margin: 0 0 1.25rem;
}

.lb-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
}

.lb-text--primary  { color: #2563eb; }
.lb-text--white    { color: #ffffff !important; }
.lb-text--muted    { color: #a8a29e; }
.lb-text--blue-100 { color: #bfdbfe; }
.lb-text--light    { font-weight: 300; }
.lb-text--center   { text-align: center; }

/* ── Background helpers ───────────────────────────────────────────────────── */

.lb-bg--white   { background-color: #ffffff; }
.lb-bg--light   { background-color: #fafaf9; }
.lb-bg--dark    { background-color: #1c1917; }
.lb-bg--primary { background-color: #2563eb; }

/* ── Sections ─────────────────────────────────────────────────────────────── */

.lb-section {
	padding-top: 7rem;
	padding-bottom: 7rem;
	width: 100%;
}

.lb-section--pt-hero {
	padding-top: 10rem;
}

.lb-section__header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.lb-section__intro {
	max-width: 760px;
	margin-bottom: 4rem;
}

/* ── Header / Navbar ──────────────────────────────────────────────────────── */

/*
 * The header is a WordPress template part.
 * core/site-logo, core/navigation, and core/html(social) are rendered as
 * siblings. We use a CSS trick: the template part element (.wp-site-blocks header,
 * or the direct children) is styled as a flex container via the .lb-header
 * class added by JS to the <header> tag, OR we target the template part wrapper.
 */

/* The template part wrapper for the header */
[data-type="header"],
.wp-block-template-part[data-slug="header"] {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
	padding: 1.25rem max(1.5rem, calc(50% - 640px));
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 2rem;
}

/* Fallback: target any header that WordPress renders from the template part */
.lb-header-wrapper,
header.wp-block-template-part {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 1.25rem max(1.5rem, calc(50% - 640px));
	gap: 2rem;
	transition: all 0.3s ease;
}

/* Since the header.html uses raw blocks, target the site header area */
.wp-site-blocks > header,
#lb-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

/* Navigation wrapper - applied via JS */
.lb-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 1.25rem 1.5rem;
	gap: 2rem;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
	max-width: 1280px;
	margin: 0 auto;
}

/*
 * WordPress FSE renders template parts inside a specific container.
 * We wrap the whole sticky bar with a pseudo-fixed parent.
 */
.wp-site-blocks {
	padding-top: 0 !important;
}

/* The actual sticky bar container */
.lb-site-header-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
	padding: 1rem 0;
}

.lb-site-header-bar--scrolled,
.lb-site-header-bar--inner,
.lb-header--opaque {
	background-color: rgba(255, 255, 255, 0.93);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.04);
	padding: 0.75rem max(1.5rem, calc(50% - 640px));
}


.lb-site-header-bar__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

/* Logo */
.lb-logo-block img,
.wp-block-site-logo img {
	height: 3rem;
	width: auto;
	transition: filter 0.3s ease;
}

.lb-header-transparent .lb-logo-block img,
.lb-header-transparent .wp-block-site-logo img {
	filter: brightness(0) invert(1);
}

/* Navigation */

/* Push nav to the right and add separator before social icons */
nav.lb-nav {
	margin-left: auto;
	padding-right: 2rem;
	margin-right: 0.5rem;
	border-right: 1px solid #e7e5e4;
	display: flex;
	align-items: center;
}

.lb-header-transparent nav.lb-nav {
	border-right-color: rgba(255, 255, 255, 0.25);
}

/* Nav list */
.lb-nav__list {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lb-nav__list .menu-item {
	position: relative;
}

.lb-nav__list .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1c1917;
	text-decoration: none;
	padding: 0.35rem 0.5rem;
	border-radius: 6px;
	transition: color 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
}

.lb-nav__list .menu-item > a:hover {
	background-color: rgba(0, 0, 0, 0.05);
	color: #1c1917;
}

/* Dropdown arrow */
.lb-nav__list .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0.4em;
	height: 0.4em;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-20%);
	flex-shrink: 0;
}

/* Transparent header */
.lb-header-transparent .lb-nav__list .menu-item > a {
	color: #ffffff;
}

.lb-header-transparent .lb-nav__list .menu-item > a:hover {
	background-color: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

/* Dropdown submenu */
.lb-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	z-index: 9999;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	border: 1px solid #f0eeec;
	min-width: 200px;
	padding: 0.4rem 0;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
	.lb-nav__list .menu-item-has-children:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

.lb-nav__list .menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lb-nav__list .sub-menu .menu-item > a {
	display: block;
	padding: 0.6rem 1rem;
	font-size: 0.875rem;
	font-weight: 400;
	color: #78716c;
	border-radius: 0;
	text-decoration: none;
	transition: background-color 0.15s, color 0.15s;
}

.lb-nav__list .sub-menu .menu-item > a:hover {
	background-color: #fafaf9;
	color: #2563eb;
}

/* Mobile toggle button — hidden on desktop */
.lb-nav__toggle {
	display: none;
}

.lb-nav__collapse {
	display: flex;
}

/* Social links in header */
.lb-header__social {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	flex-shrink: 0;
}

/* core/social-links overrides for header */
.lb-header__social.wp-block-social-links {
	padding: 0 !important;
	margin: 0 !important;
}

.lb-header__social .wp-block-social-link {
	list-style: none;
}

.lb-header__social .wp-block-social-link-anchor svg,
.lb-footer__social .wp-block-social-link-anchor svg {
	fill: currentColor;
}

.lb-header__social .wp-block-social-link-anchor,
.lb-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	text-decoration: none;
	background-color: transparent;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.lb-header__social .wp-block-social-link-anchor { color: #44403c !important; }

.lb-header__social .wp-block-social-link-anchor:hover {
	background-color: rgba(0, 0, 0, 0.07);
	transform: scale(1.1);
	color: #44403c !important;
}

/* Transparent state: white icons */
.lb-header-transparent .lb-header__social .wp-block-social-link,
.lb-header-transparent .lb-header__social .wp-block-social-link-anchor {
	color: #ffffff !important;
}

.lb-header-transparent .lb-header__social .wp-block-social-link-anchor:hover {
	background-color: rgba(255, 255, 255, 0.15);
	color: #ffffff !important;
}

/* ── Hero Sections ────────────────────────────────────────────────────────── */

/* Hero inner — bloc serveur-side (lb/hero-inner) */
.lb-hero {
	position: relative;
	overflow: hidden;
	background-color: #1c1917;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
}

.lb-hero--inner {
	min-height: 60vh;
	justify-content: flex-end;
}

.lb-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

.lb-hero__wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 1.5rem 5rem;
}

/* Fil d'ariane */
.lb-breadcrumb { margin-bottom: 1.5rem; }

.lb-breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.25rem 0;
}

.lb-breadcrumb__item {
	display: flex;
	align-items: center;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

.lb-breadcrumb__item + .lb-breadcrumb__item::before {
	content: '/';
	margin: 0 0.5rem;
	color: rgba(255, 255, 255, 0.3);
}

.lb-breadcrumb__item a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s;
}

.lb-breadcrumb__item a:hover { color: #ffffff; }

.lb-breadcrumb__item--current { color: rgba(255, 255, 255, 0.9); }

/* Hero home — animation sur l'image cover Gutenberg */
.lb-hero--home .wp-block-cover__image-background {
	animation: lb-slow-zoom 20s ease-in-out infinite alternate;
}

@keyframes lb-slow-zoom {
	from { transform: scale(1); }
	to   { transform: scale(1.07); }
}

.lb-hero .wp-block-cover__background {
	background-color: #1c1917 !important;
}

.lb-hero--bottom .wp-block-cover__inner-container {
	display: flex;
	align-items: flex-end;
	padding-bottom: 5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.lb-hero__inner {
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.lb-hero__content {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
	text-align: center;
}

.lb-hero__title {
	font-family: var(--wp--preset--font-family--playfair, 'Playfair Display', serif);
	font-size: clamp(3rem, 7vw, 5.5rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0 0 2rem;
}

.lb-hero__title em {
	font-weight: 400;
	color: #60a5fa;
	font-style: italic;
}

.lb-hero__title--normal {
	font-weight: 400;
}

.lb-hero__subtitle {
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.7;
	color: #e7e5e4;
	margin: 0 0 3rem;
}

.lb-hero__subtitle--sm {
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0;
}

.lb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* Scroll indicator */
.lb-hero__scroll-indicator {
	margin-top: 4rem;
	animation: lb-bounce 2s ease-in-out infinite;
}

.lb-hero__scroll-line {
	width: 1px;
	height: 3rem;
	background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
	margin: 0 auto;
}

@keyframes lb-bounce {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(8px); }
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.lb-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
	border: none;
}

.lb-btn--white {
	background-color: #ffffff;
	color: #1c1917;
}

.lb-btn--white:hover {
	background-color: #2563eb;
	color: #ffffff;
	transform: scale(1.03);
	box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.lb-btn--ghost {
	background-color: rgba(255,255,255,0.12);
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(4px);
}

.lb-btn--ghost:hover {
	background-color: rgba(255,255,255,0.22);
	transform: scale(1.03);
}

.lb-btn--lg {
	padding: 1.25rem 3rem;
	font-size: 1.125rem;
	font-weight: 700;
}

/* WordPress button block — neutralise le wrapper div et applique les styles au lien interne */
.wp-block-button.lb-btn {
	background: none;
	padding: 0;
	border-radius: 0;
	border: none;
	box-shadow: none;
	display: inline-flex;
}

.wp-block-button.lb-btn .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
}

.wp-block-button.lb-btn--white .wp-block-button__link {
	background-color: #ffffff;
	color: #1c1917;
	border: none;
}

.wp-block-button.lb-btn--white .wp-block-button__link:hover {
	background-color: #2563eb;
	color: #ffffff;
	transform: scale(1.03);
	box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

.wp-block-button.lb-btn--ghost .wp-block-button__link {
	background-color: rgba(255,255,255,0.12);
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(4px);
}

.wp-block-button.lb-btn--ghost .wp-block-button__link:hover {
	background-color: rgba(255,255,255,0.22);
	transform: scale(1.03);
}

/* ── Image frames ─────────────────────────────────────────────────────────── */

.lb-img-frame {
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.lb-img-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.lb-img-frame:hover img {
	transform: scale(1.04);
}

.lb-img-frame--portrait {
	aspect-ratio: 3 / 4;
}

.lb-img-frame--aircraft {
	aspect-ratio: 16 / 10;
	border-radius: 28px;
}

.lb-img-frame--history {
	aspect-ratio: 16 / 9;
	filter: grayscale(100%);
	transition: filter 0.6s ease;
}

.lb-img-frame--history:hover {
	filter: grayscale(0%);
}

/* ── Activity Cards ───────────────────────────────────────────────────────── */

.lb-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lb-card {
	background: #ffffff;
	border-radius: 24px;
	border: 1px solid #f0eeec;
	padding: 2.5rem;
	transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.lb-card:hover {
	box-shadow: 0 24px 60px rgba(0,0,0,0.09);
	transform: translateY(-6px);
}

.lb-card__icon {
	width: 3.5rem;
	height: 3.5rem;
	background-color: #fafaf9;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #44403c;
	transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
	margin-bottom: 2rem;
}

.lb-card:hover .lb-card__icon {
	background-color: #2563eb;
	color: #ffffff;
	transform: rotate(6deg);
}

.lb-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1c1917;
	margin: 0 0 0.75rem;
	transition: color 0.2s ease;
}

.lb-card:hover .lb-card__title { color: #2563eb; }

.lb-card__body {
	font-size: 1rem;
	line-height: 1.7;
	color: #78716c;
	margin: 0 0 1.5rem;
}

.lb-card__link {
	font-size: 0.875rem;
	font-weight: 600;
	color: #2563eb;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: gap 0.2s ease;
}

.lb-card:hover .lb-card__link { gap: 0.7rem; }

/* ── Esprit Club ──────────────────────────────────────────────────────────── */

.lb-esprit-item {
	padding: 0;
}

.lb-esprit__icon {
	width: 3rem;
	height: 3rem;
	background-color: #eff6ff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
	margin-bottom: 1.5rem;
}

.lb-list--bordered {
	list-style: none !important;
	padding: 0 0 0 1rem !important;
	margin: 0.75rem 0 0 !important;
	border-left: 2px solid #f0eeec;
	font-size: 0.875rem;
	color: #78716c;
}

.lb-list--bordered li {
	padding: 0.25rem 0;
	font-style: italic;
	list-style: none;
}

/* ── Fleet Section ────────────────────────────────────────────────────────── */

.lb-aircraft {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 7rem;
}

.lb-aircraft--last { margin-bottom: 0; }

.lb-aircraft--even .lb-aircraft__media { order: -1; }

/* core/columns used for specs — override WP flex with grid */
.lb-aircraft__specs.wp-block-columns,
.lb-aircraft__specs {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	padding: 1.5rem 0;
	border-top: 1px solid #f0eeec;
	border-bottom: 1px solid #f0eeec;
	margin-top: 2rem;
	flex-wrap: unset;
}

.lb-spec.wp-block-column,
.lb-spec {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	flex: unset;
}

.lb-spec__label {
	font-size: 0.7rem !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #a8a29e !important;
	margin: 0 !important;
}

.lb-spec__value {
	font-size: 1rem !important;
	font-weight: 700;
	color: #1c1917 !important;
	margin: 0 !important;
}

/* ── Maintenance icon ─────────────────────────────────────────────────────── */

.lb-icon-box {
	width: 5rem;
	height: 5rem;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.5rem;
}

.lb-icon-box--blue {
	background-color: #2563eb;
	color: #ffffff;
}

/* ── Stats row (home presentation) ───────────────────────────────────────── */

.lb-stats-row.wp-block-columns,
.lb-stats-row {
	display: flex !important;
	flex-wrap: wrap;
	gap: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #f0eeec;
	margin-top: 1rem;
}

.lb-stat-item.wp-block-column,
.lb-stat-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: unset;
}

.lb-stat-number {
	font-family: var(--wp--preset--font-family--playfair, serif);
	font-size: 2.5rem !important;
	font-weight: 700 !important;
	color: #1c1917 !important;
	line-height: 1 !important;
	margin: 0 !important;
}

.lb-stat-label {
	font-size: 0.75rem !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #78716c !important;
	margin: 0 !important;
}

/* ── Stats bar (section stats) ───────────────────────────────────────────── */

.lb-stats-bar.wp-block-columns,
.lb-stats-bar {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4rem;
	margin-top: 2.5rem;
}

.lb-stat-block.wp-block-column,
.lb-stat-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	flex: unset;
}

.lb-stat-block__number {
	font-family: var(--wp--preset--font-family--playfair, serif);
	font-size: 3.5rem !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	line-height: 1 !important;
	margin: 0 !important;
}

.lb-stat-block__label {
	font-size: 0.75rem !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.75) !important;
	margin: 0 !important;
}

/* ── News / Facebook embed ────────────────────────────────────────────────── */

.lb-news__feed {
	background: #fafaf9;
	border-radius: 24px;
	padding: 1rem;
	border: 1px solid #f0eeec;
	overflow: hidden;
	min-height: 620px;
	display: flex;
	align-items: center;
}

.lb-news__feed iframe {
	border-radius: 16px;
}

.lb-link--bold {
	font-weight: 700;
	color: #2563eb;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	margin-top: 1.5rem;
}

.lb-link--bold:hover { text-decoration: underline; }

/* ── CTA section ─────────────────────────────────────────────────────────── */

.lb-cta__box {
	background-color: #2563eb;
	border-radius: 3rem;
	padding: 5rem 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.lb-cta__bg-logo {
	position: absolute;
	top: 0;
	right: 0;
	padding: 3rem;
	opacity: 0.07;
	pointer-events: none;
}

.lb-cta__bg-logo img {
	width: 14rem;
	filter: brightness(0) invert(1);
	transform: rotate(12deg);
}

.lb-section--cta .wp-block-button__link {
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.lb-section--cta .wp-block-button__link:hover {
	background-color: #2563eb !important;
	color: #ffffff !important;
	transform: scale(1.03);
	box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}

/* ── History section ─────────────────────────────────────────────────────── */

.lb-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem !important;
	background-color: #e7e5e3;
	color: #78716c !important;
	border-radius: 50px;
	font-size: 0.75rem !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	width: fit-content;
}

.lb-history__timeline {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.lb-timeline-entry__year {
	font-size: 1rem;
	font-weight: 700;
	color: #1c1917;
	margin: 0 0 0.5rem;
}

.lb-pullquote {
	background: #ffffff;
	border-radius: 16px;
	padding: 1.5rem 2rem;
	margin: 1.5rem 0 0;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	border: 1px solid #f0eeec;
	font-size: 0.9rem;
	color: #78716c;
	font-style: italic;
	line-height: 1.7;
}

/* ── Engagement blockquote ────────────────────────────────────────────────── */

.lb-blockquote {
	border-left: 4px solid #2563eb;
	padding: 0.5rem 0 0.5rem 1.5rem;
	margin: 2rem 0;
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 500;
	color: #1c1917;
	line-height: 1.7;
}

/* ── Gallery slider ──────────────────────────────────────────────────────── */

.lb-gallery__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
}

.lb-gallery__controls {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}

.lb-gallery__btn {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	background: transparent;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}

.lb-gallery__btn:hover {
	background-color: #ffffff;
	color: #1c1917;
}

.lb-gallery__slider {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 0 1.5rem 1rem;
}

.lb-gallery__slider::-webkit-scrollbar { display: none; }

.lb-gallery__slide {
	flex: none;
	width: min(85vw, 400px);
	aspect-ratio: 4 / 3;
	scroll-snap-align: center;
	border-radius: 16px;
	overflow: hidden;
}

.lb-gallery__slide .wp-block-group,
.lb-gallery__slide .wp-block-image,
.lb-gallery__slide figure {
	width: 100%;
	height: 100%;
	margin: 0;
}

.lb-gallery__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.lb-gallery__slide:hover img { transform: scale(1.04); }

/* ── Contact section ─────────────────────────────────────────────────────── */

.lb-contact__items {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 2rem;
}

.lb-contact__item {
	display: flex !important;
	gap: 1.25rem;
	align-items: flex-start;
}

/* Inner text group inside contact item */
.lb-contact__item > .wp-block-group {
	flex: 1;
	min-width: 0;
}

.lb-contact__item > .wp-block-group h3,
.lb-contact__item h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #1c1917;
	margin: 0 0 0.25rem;
}

.lb-contact__item:hover > .wp-block-group h3,
.lb-contact__item:hover h3 { color: #2563eb; }

.lb-contact__item > .wp-block-group p,
.lb-contact__item p {
	font-size: 0.9375rem;
	color: #78716c;
	margin: 0;
	line-height: 1.6;
}

.lb-contact__item > .wp-block-group a,
.lb-contact__item a { color: #78716c; text-decoration: none; }
.lb-contact__item > .wp-block-group a:hover,
.lb-contact__item a:hover { color: #2563eb; }

.lb-contact__item-icon {
	width: 3rem;
	height: 3rem;
	min-width: 3rem;
	background-color: #eff6ff;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
	transition: background-color 0.3s, color 0.3s;
}

.lb-contact__item:hover .lb-contact__item-icon {
	background-color: #2563eb;
	color: #ffffff;
}


.lb-pilot-info {
	background-color: #1c1917;
	color: #ffffff;
	border-radius: 20px;
	padding: 1.75rem;
}

.lb-pilot-info h4 {
	font-family: var(--wp--preset--font-family--playfair, serif);
	font-size: 1.25rem;
	color: #ffffff;
	margin: 0 0 0.75rem;
}

.lb-pilot-info p {
	font-size: 0.875rem;
	color: #a8a29e;
	margin: 0;
	line-height: 1.7;
}

/* ── Form ─────────────────────────────────────────────────────────────────── */

.lb-form-card {
	background: #ffffff;
	border-radius: 2.5rem;
	padding: 3rem;
	box-shadow: 0 4px 40px rgba(0,0,0,0.06);
	border: 1px solid #f0eeec;
}

.lb-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.lb-form__group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.lb-form__row .lb-form__group { margin-bottom: 0; }

.lb-form__label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #1c1917;
}

.lb-form__input {
	width: 100%;
	padding: 0.875rem 1.25rem;
	background: #fafaf9;
	border: 1px solid #e7e5e3;
	border-radius: 12px;
	font-family: inherit;
	font-size: 1rem;
	color: #1c1917;
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
}

.lb-form__input::placeholder { color: #a8a29e; }

.lb-form__input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
	background: #ffffff;
}

.lb-form__select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a8a29e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 3rem;
}

.lb-form__textarea { resize: none; min-height: 150px; }

.lb-form__submit {
	width: 100%;
	padding: 1.1rem 2rem;
	background-color: #2563eb;
	color: #ffffff;
	border: none;
	border-radius: 14px;
	font-family: inherit;
	font-size: 1.0625rem;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(37,99,235,0.2);
}

.lb-form__submit:hover {
	background-color: #1d4ed8;
	transform: scale(1.01);
	box-shadow: 0 8px 28px rgba(37,99,235,0.3);
}

.lb-form__submit:active { transform: scale(0.99); }

.lb-form__submit svg { transition: transform 0.2s; }
.lb-form__submit:hover svg { transform: translate(2px, -2px); }

/* Form success/error */
.lb-form__success {
	text-align: center;
	padding: 5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.lb-form__success-icon {
	width: 5rem;
	height: 5rem;
	background-color: #dcfce7;
	color: #16a34a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lb-form__success h2 {
	font-family: var(--wp--preset--font-family--playfair, serif);
	font-size: 2rem;
	color: #1c1917;
	margin: 0;
}

.lb-form__success p { color: #78716c; margin: 0; }

.lb-form__reset {
	background: none;
	border: none;
	color: #2563eb;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	text-decoration: underline;
}

.lb-form__error {
	padding: 1rem 1.25rem;
	background-color: #fef2f2;
	color: #dc2626;
	border-radius: 10px;
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
}

/* Map inline */
.lb-contact__map-inline {
	display: block;
	position: relative;
	margin-top: 2rem;
	border-radius: 12px;
	overflow: hidden;
	filter: grayscale(20%);
	transition: filter 0.4s ease, transform 0.4s ease;
	box-shadow: 0 4px 20px rgba(0,0,0,.10);
}

.lb-contact__map-inline:hover {
	filter: grayscale(0%);
	transform: scale(1.01);
}

.lb-contact__map-inline img {
	display: block;
	width: 100%;
	height: auto;
}

.lb-contact__map-badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	background: #fff;
	color: #2563eb;
	font-size: 0.9375rem;
	font-weight: 600;
	padding: 0.55em 1.1em;
	border-radius: 999px;
	box-shadow: 0 2px 12px rgba(0,0,0,.15);
	white-space: nowrap;
	pointer-events: none;
}

/* ── Breadcrumbs ─────────────────────────────────────────────────────────── */

.lb-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #78716c;
	margin-bottom: 1.5rem;
}

.lb-breadcrumbs a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #78716c;
	text-decoration: none;
	transition: color 0.2s;
}

.lb-breadcrumbs a:hover { color: #2563eb; }

.lb-breadcrumbs--light,
.lb-breadcrumbs--light a { color: rgba(255,255,255,0.65); }
.lb-breadcrumbs--light a:hover { color: #ffffff; }

/* ── Footer ──────────────────────────────────────────────────────────────── */

.lb-footer {
	background-color: #1c1917;
	color: #a8a29e;
	padding: 5rem 0 0;
}

.lb-footer__grid.wp-block-columns,
.lb-footer__grid {
	display: grid !important;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	flex-wrap: unset;
}

.lb-footer__grid .wp-block-column {
	flex: unset;
	min-width: unset;
}

/* Site logo in footer */
.lb-footer .wp-block-site-logo {
	margin-bottom: 1.25rem;
}

.lb-footer .wp-block-site-logo img {
	height: 3.5rem;
	width: auto;
}

.lb-footer__brand p,
.lb-footer__brand .wp-block-paragraph {
	font-size: 0.875rem;
	line-height: 1.7;
	color: #a8a29e;
	margin: 0 0 1.5rem;
}

/* core/social-links in footer */
.lb-footer__social.wp-block-social-links {
	display: flex;
	gap: 0.5rem !important;
	padding: 0 !important;
	margin: 0 !important;
}

.lb-footer__social .wp-block-social-link {
	list-style: none;
}

.lb-footer__social .wp-block-social-link-anchor {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.25s, color 0.25s, transform 0.25s;
}

.lb-footer__social .wp-block-social-link-anchor { color: #ffffff; }

.lb-footer__social .wp-block-social-link-anchor:hover {
	background-color: rgba(255,255,255,0.15);
	color: #ffffff;
	transform: scale(1.1);
}

.lb-footer__heading {
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #ffffff !important;
	margin: 0 0 1.5rem !important;
}

.lb-footer__links {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.lb-footer__links li { list-style: none; }

.lb-footer__links a {
	font-size: 0.875rem;
	color: #a8a29e;
	text-decoration: none;
	transition: color 0.2s, padding-left 0.2s;
	display: inline-block;
}

.lb-footer__links a:hover { color: #60a5fa; padding-left: 4px; }

/* Contact & hours text */
.lb-footer__contact-text,
.lb-footer__hours-text {
	font-size: 0.875rem !important;
	color: #a8a29e !important;
	line-height: 1.6;
	margin: 0 0 0.5rem !important;
}

.lb-footer__contact-text a { color: #a8a29e; text-decoration: none; }
.lb-footer__contact-text a:hover { color: #60a5fa; }

.lb-footer__bottom {
	margin-top: 4rem;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255,255,255,0.05);
	text-align: center;
}

.lb-footer__copyright {
	font-size: 0.75rem !important;
	color: #78716c !important;
	margin: 0 !important;
}

.lb-footer__copyright a { color: #78716c; text-decoration: none; }
.lb-footer__copyright a:hover { color: #a8a29e; }

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.lb-footer__grid.wp-block-columns,
	.lb-footer__grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 768px) {
	.lb-section { padding-top: 4rem; padding-bottom: 4rem; }
	.lb-section--pt-hero { padding-top: 7rem; }
	.lb-cards-grid { grid-template-columns: 1fr; }
	.lb-aircraft { grid-template-columns: 1fr; }
	.lb-aircraft--even .lb-aircraft__media { order: 0; }
	.lb-aircraft__specs.wp-block-columns,
	.lb-aircraft__specs { grid-template-columns: 1fr !important; }
	.lb-form__row { grid-template-columns: 1fr; }
	.lb-form-card { padding: 1.5rem; border-radius: 1.5rem; }
	.lb-cta__box { padding: 3rem 1.5rem; border-radius: 2rem; }
	.lb-stats-bar { gap: 2rem; }
	.lb-gallery__slide { width: 85vw; }
	.lb-footer__grid.wp-block-columns,
	.lb-footer__grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
	.lb-header__social { display: none; }
	.lb-hero__title { font-size: clamp(2.5rem, 8vw, 4rem); }

	nav.lb-nav {
		border-right: none;
		padding-right: 0;
		margin-right: 0;
		margin-left: auto;
		position: static;
	}

	.lb-nav__toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 2.25rem;
		height: 2.25rem;
		padding: 0.4rem;
		background: none;
		border: none;
		cursor: pointer;
		border-radius: 6px;
		color: #1c1917;
		transition: background-color 0.2s;
		flex-shrink: 0;
	}

	.lb-header-transparent .lb-nav__toggle { color: #ffffff; }

	.lb-nav__toggle:hover { background-color: rgba(0, 0, 0, 0.06); }

	.lb-nav__toggle span {
		display: block;
		width: 20px;
		height: 2px;
		background-color: currentColor;
		border-radius: 2px;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.lb-nav--open .lb-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.lb-nav--open .lb-nav__toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
	.lb-nav--open .lb-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.lb-nav__collapse {
		display: none;
		position: fixed;
		inset: 0;
		background-color: #ffffff;
		padding: 6.5rem 1.5rem 2rem;
		overflow-y: auto;
		z-index: 998;
		flex-direction: column;
	}

	.lb-nav--open .lb-nav__collapse { display: flex; }

	.lb-nav__list {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.lb-nav__list .menu-item > a {
		display: flex;
		justify-content: space-between;
		padding: 0.875rem 0;
		border-bottom: 1px solid #f0eeec;
		border-radius: 0;
		font-size: 1rem;
		color: #1c1917;
	}

	.lb-nav__list .menu-item > a:hover { background-color: transparent; color: #2563eb; }

	.lb-nav__list .menu-item-has-children > a::after { transform: rotate(45deg); }

	.lb-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: hidden;
		max-height: 0;
		overflow: hidden;
		box-shadow: none;
		border: none;
		border-radius: 0;
		padding: 0;
		transform: none;
		transition: max-height 0.3s ease, visibility 0.3s;
		background: transparent;
		min-width: unset;
	}

	.lb-nav__list .menu-item-has-children.is-open > .sub-menu {
		visibility: visible;
		max-height: 400px;
	}

	.lb-nav__list .sub-menu .menu-item > a {
		padding: 0.75rem 0 0.75rem 1rem;
		border-bottom: 1px solid #f0eeec;
		color: #78716c;
		font-size: 0.9375rem;
	}
}

@media (max-width: 480px) {
	.lb-hero__actions { flex-direction: column; align-items: center; }
	.lb-news__feed { min-height: 400px; }
}

/* ── Cards grid — 2-col modifier ─────────────────────────────────────────── */

.lb-cards-grid--2col {
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
	.lb-cards-grid--2col {
		grid-template-columns: 1fr;
	}
}

/* ── Price list ──────────────────────────────────────────────────────────── */

.lb-price-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
}

.lb-price-item {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0.625rem 0;
	border-bottom: 1px solid #f0eeec;
	gap: 1rem;
}

.lb-price-item:last-child { border-bottom: none; }

.lb-price-item__label {
	font-size: 0.9375rem;
	color: #78716c;
	line-height: 1.4;
}

.lb-price-item__price {
	font-size: 1rem;
	font-weight: 700;
	color: #1c1917;
	white-space: nowrap;
	flex-shrink: 0;
}

/* ── Bullet list ─────────────────────────────────────────────────────────── */

.lb-list.wp-block-list,
.lb-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.lb-list__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #44403c;
	padding: 0 !important;
}

.lb-list__item::before {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #2563eb;
	margin-top: 0.45em;
}

/* ── CTA light (sans fond) ───────────────────────────────────────────────── */

.lb-section--cta-light {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.lb-cta-light__inner {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.lb-section--cta-light .wp-block-button__link {
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.lb-section--cta-light .wp-block-button__link:hover {
	transform: scale(1.03);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

/* =========================================
   Mosaïque photos — Vol Découverte
   ========================================= */

.lb-photos-mosaic .wp-block-columns {
	gap: 0.375rem;
}

.lb-photo-card {
	overflow: hidden;
}

.lb-photo-card .wp-block-cover__inner-container {
	padding: 1.25rem 1.5rem;
}

.lb-photo-card__label {
	color: #fff !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em;
	margin: 0 !important;
	line-height: 1.3;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
