@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Custom fonts */
@font-face {
	font-family: 'Arboria';
	src: url('./arboria-bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/* Base reset */
*,
*::before,
*::after {
	box-sizing: border-box
}

html {
	font-size: 16px;
	scroll-behavior: smooth
}

/* Palette (blanc / doré / rouge) */
:root {
	--white: #ffffff;
	--text-on-dark: #f7f5ef;
	--bg-body: #ffffff;
	/* fond de page clair */
	--gold-500: #d3b37a;
	/* raffinement */
	--gold-600: #b9965a;
	--red-500: #c53b36;
	/* vitalité */
}

body {
	margin: 0;
	font-family: "Playfair Display", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
	color: #1a1a1a;
	background: var(--bg-body)
}

a {
	color: inherit;
	text-decoration: none
}

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

/* Page shell */
.page {
	padding: 16px
}

/* Top image */
.top-image {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
	padding: 0 16px;
}

.top-image img {
	max-width: 100%;
	width: 300px;
	height: auto;
}

/* Hero shell: rounded rectangle with subtle margin */
.hero-shell {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .35)), url('images/hero.jpg') center/cover no-repeat;
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	isolation: isolate
}

/* Transparent header overlay */
.site-header {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 20px
}

/* Desktop navigation */
.nav-desktop {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 40px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.nav-desktop ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
	margin: 0
}

.nav-left {
	justify-self: end;
}

.nav-right {
	justify-self: start;
}

.nav-desktop a {
	position: relative;
	font-weight: 500;
	letter-spacing: .02em;
	color: var(--text-on-dark);
	opacity: .92
}

.nav-desktop a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	height: 2px;
	width: 0;
	background: var(--red-500);
	transition: width .25s ease
}

.nav-desktop a:hover {
	opacity: 1
}

.nav-desktop a:hover::after {
	width: 100%
}

/* Social Icons in Navigation */
.social-icons {
	display: flex;
	align-items: center;
	gap: 12px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	color: var(--text-on-dark);
	font-size: 1rem;
	transition: all .3s ease;
	backdrop-filter: blur(8px);
}

.social-link:hover {
	background: rgba(255, 255, 255, .2);
	border-color: rgba(255, 255, 255, .4);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.social-link::after {
	display: none !important;
}

.social-link.instagram-coming-soon {
	opacity: .6;
	cursor: not-allowed;
}

.social-link.instagram-coming-soon:hover {
	transform: none;
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .2);
	box-shadow: none;
}

/* Brand centered */
.brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translateY(2px);
}

.brand img {
	height: 120px;
	width: auto;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35))
}

/* Burger button */
.nav-toggle {
	position: absolute;
	left: 14px;
	top: 14px;
	height: 40px;
	width: 44px;
	border: 1px solid rgba(241, 239, 233, .25);
	border-radius: 12px;
	background: rgba(20, 20, 20, .35);
	backdrop-filter: saturate(180%) blur(8px);
	display: none;
	align-items: center;
	justify-content: center;
	gap: 4px;
	cursor: pointer
}

.nav-toggle-bar {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--text-on-dark);
	border-radius: 2px;
	position: relative;
	transition: transform .25s ease, opacity .2s ease
}

.nav-toggle-bar:nth-child(1) {
	top: -4px
}

.nav-toggle-bar:nth-child(3) {
	top: 4px
}

.nav-toggle[aria-expanded="true"] {
	border-color: rgba(197, 59, 54, .45);
	background: rgba(20, 20, 20, .55)
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg)
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
	opacity: 0
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg)
}

/* Hero content */
.hero {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	min-height: calc(70vh - 72px);
	padding: 32px
}

.hero-content {
	text-align: center;
	color: var(--text-on-dark);
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
}

.hero h1 {
	font-family: "Arboria", serif;
	font-weight: 700;
	font-size: clamp(2.75rem, 6vw, 4.25rem);
	letter-spacing: .04em;
	margin: 0 0 30px
}

.tagline {
	font-weight: 500;
	opacity: .9;
	margin: 0 0 20px;
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	line-height: 1.35
}

.btn-cta {
	display: inline-block;
	padding: 16px 28px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
	color: #1a1a1a;
	font-weight: 700;
	letter-spacing: .03em;
	box-shadow: 0 8px 24px rgba(191, 153, 88, .35);
	font-size: clamp(1rem, 1.4vw, 1.125rem)
}

.btn-cta:hover {
	filter: brightness(1.05)
}

/* Prevent scrolling when mobile menu is open */
body.mobile-menu-open {
	overflow: hidden;
	height: 100vh;
}

body.mobile-menu-open .hero-shell {
	height: 100vh;
	overflow: hidden;
}

/* Mobile menu plein écran */
.nav-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	min-width: 100vw;
	background: radial-gradient(1200px 600px at 20% -10%, rgba(211, 179, 122, .12), transparent 42%), 
	            radial-gradient(900px 600px at 120% 110%, rgba(197, 59, 54, .08), transparent 42%), 
	            #ffffff;
	backdrop-filter: blur(20px);
	z-index: 1000;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	inset: 0;
}

.nav-mobile[hidden] {
	display: none !important
}

.nav-mobile-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100%;
	padding: 0 40px;
	position: relative;
}

.nav-close {
	position: absolute;
	top: 32px;
	right: 32px;
	background: rgba(0, 0, 0, 0.05);
	border: 2px solid rgba(0, 0, 0, 0.1);
	color: #1a1a1a;
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 25px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	opacity: 0;
	transform: rotate(90deg) scale(0.8);
	animation: rotateIn 0.5s ease forwards;
	animation-delay: 0.1s;
}

.nav-close:hover {
	background: rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.2);
	transform: rotate(0deg) scale(1.1);
}

.nav-close::before {
	content: "×";
	line-height: 1;
}

.brand-mobile {
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(-20px);
	animation: slideInFromTop 0.6s ease forwards;
	animation-delay: 0.2s;
}

.brand-mobile img {
	height: 80px;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.nav-mobile ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
	text-align: center;
}

.nav-mobile li {
	opacity: 0;
	transform: translateX(-30px);
	border: none;
}

.nav-mobile li:nth-child(1) { animation: slideInFromLeft 0.6s ease forwards; animation-delay: 0.3s; }
.nav-mobile li:nth-child(2) { animation: slideInFromLeft 0.6s ease forwards; animation-delay: 0.4s; }
.nav-mobile li:nth-child(3) { animation: slideInFromLeft 0.6s ease forwards; animation-delay: 0.5s; }
.nav-mobile li:nth-child(4) { animation: slideInFromLeft 0.6s ease forwards; animation-delay: 0.6s; }
.nav-mobile li:nth-child(5) { animation: slideInFromLeft 0.6s ease forwards; animation-delay: 0.7s; }

.nav-mobile a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 2rem;
	font-weight: 500;
	font-family: 'Playfair Display', serif;
	position: relative;
	padding: 12px 24px;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
	letter-spacing: 0.02em;
}

.nav-mobile a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(211, 179, 122, 0.2), rgba(197, 59, 54, 0.15));
	opacity: 0;
	border-radius: 12px;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.nav-mobile a:hover {
	color: #1a1a1a;
	transform: translateY(-2px);
}

.nav-mobile a:hover::before {
	opacity: 1;
}

.nav-mobile a:active {
	transform: translateY(0);
}

/* Mobile Social Links */
.mobile-social {
	margin-top: 40px;
	opacity: 0;
	transform: translateX(-30px);
	animation: slideInFromLeft 0.6s ease forwards;
	animation-delay: 0.8s;
}

.mobile-social-links {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.mobile-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(211, 179, 122, 0.2), rgba(197, 59, 54, 0.15));
	border: 2px solid rgba(211, 179, 122, 0.3);
	color: #1a1a1a;
	font-size: 1.25rem;
	transition: all .3s ease;
	text-decoration: none;
}

.mobile-social-link:hover {
	background: linear-gradient(135deg, rgba(211, 179, 122, 0.3), rgba(197, 59, 54, 0.2));
	border-color: rgba(211, 179, 122, 0.5);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
}

.mobile-social-link.instagram-coming-soon {
	opacity: .6;
	cursor: not-allowed;
}

.mobile-social-link.instagram-coming-soon:hover {
	transform: none;
	background: linear-gradient(135deg, rgba(211, 179, 122, 0.2), rgba(197, 59, 54, 0.15));
	border-color: rgba(211, 179, 122, 0.3);
	box-shadow: none;
}

/* Responsive menu mobile */
@media (max-width: 768px) {
	.nav-mobile-inner {
		padding: 0 32px;
	}
	
	.nav-close {
		top: 24px;
		right: 24px;
		width: 45px;
		height: 45px;
		font-size: 1.4rem;
	}
	
	.brand-mobile {
		margin-bottom: 50px;
	}
	
	.brand-mobile img {
		height: 70px;
	}
	
	.nav-mobile ul {
		gap: 28px;
	}
	
	.nav-mobile a {
		font-size: 1.8rem;
		padding: 10px 20px;
	}
}

@media (max-width: 480px) {
	.nav-mobile-inner {
		padding: 0 24px;
	}
	
	.nav-close {
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
		font-size: 1.3rem;
	}
	
	.brand-mobile {
		margin-bottom: 40px;
	}
	
	.brand-mobile img {
		height: 60px;
	}
	
	.nav-mobile ul {
		gap: 24px;
	}
	
	.nav-mobile a {
		font-size: 1.6rem;
		padding: 8px 16px;
	}
}

/* Main content */
.main {
	padding: 0 16px
}

/* Section styles */
.section {
	margin: 80px 0;
	position: relative
}

.section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px
}

/* About section */
.about {
	padding: 100px 0;
	position: relative
}



.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center
}

.about-content {
	text-align: left
}

/* About section uses shared section-eyebrow and section-title styles */

.about-text {
	margin: 0 0 48px
}

.about-text p {
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	line-height: 1.6;
	color: #2a2a2a;
	margin: 0 0 20px
}

.about-text p:last-child {
	margin: 0
}

.about-quote {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	color: var(--gold-600);
	background: rgba(211, 179, 122, .12);
	border-left: 3px solid var(--gold-500);
	padding: 14px 16px;
	margin: 0 0 28px;
	border-radius: 8px
}

/* About Values */
.about-values {
	margin: 0 0 32px;
}

.about-values h3 {
	font-family: "Arboria", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	color: #1a1a1a;
	margin: 0 0 24px;
}

.values-flow {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.value-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
}

.value-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-500), var(--red-500));
	flex-shrink: 0;
	box-shadow: 0 0 0 4px rgba(211, 179, 122, .15);
}

.value-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.value-content strong {
	font-weight: 700;
	letter-spacing: .02em;
	color: #1a1a1a;
	font-size: clamp(.95rem, 1.5vw, 1.05rem);
}

.value-content span {
	color: #4a4a4a;
	font-size: clamp(.9rem, 1.4vw, 1rem);
	line-height: 1.4;
}

/* About image */
.about-image {
	position: relative
}

.about-image img {
	width: 100%;
	height: 560px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
	filter: saturate(.9)
}

/* Responsive about section */
@media (max-width: 768px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 32px
	}

	.about-content {
		text-align: center;
		order: 2
	}

	.about-eyebrow {
		margin: 0 auto
	}



	.about-text {
		margin: 0 0 28px
	}

	.about-image {
		order: 1
	}

	.about-image img {
		height: 320px
	}

	.values-flow {
		gap: 16px
	}

	.value-item {
		justify-content: center
	}

	.btn-secondary {
		width: 100%;
		max-width: 320px
	}
}

/* Secondary button */
.btn-secondary {
	display: inline-block;
	padding: 14px 26px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .9);
	border: 1px solid var(--gold-500);
	color: #1a1a1a;
	font-weight: 600;
	letter-spacing: .02em;
	margin-top: 32px;
	font-size: 1rem
}

.btn-secondary:hover {
	background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
	color: #1a1a1a;
	border-color: var(--gold-600)
}

/* Luxopuncture section */
.luxo {
	padding: 80px 0
}

.luxo .section-inner {
	position: relative
}

/* Header Section */
.luxo-header-section {
	text-align: center;
	margin-bottom: 60px;
}

.luxo-header {
	margin-bottom: 30px;
}

.section-eyebrow {
	display: inline-block;
	font-family: "Arboria", sans-serif;
	font-size: .9rem;
	font-weight: bold;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #1a1a1a;
	border: 2px solid var(--gold-600);
	border-radius: 999px;
	padding: 12px 20px;
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	box-shadow: 0 4px 12px rgba(191, 153, 88, .25);
	transition: all .3s ease;
}

.section-eyebrow:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(191, 153, 88, .35);
	background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
}

.section-title {
	font-family: "Arboria", serif;
	font-weight: 600;
	font-size: clamp(2rem, 3.8vw, 3rem);
	color: #1a1a1a;
	margin: 8px 0 22px;
	letter-spacing: .02em;
	position: relative;
	padding-bottom: 14px
}

.luxo-intro-text {
	max-width: 800px;
	margin: 0 auto;
}

.luxo-intro-text p {
	font-family: "Arboria", sans-serif;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	font-weight: bold;
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0 0 20px;
	font-style: normal;
	opacity: .95;
}

.luxo-intro-text p:last-child {
	font-style: normal;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	color: #4a4a4a;
	margin: 0;
}

/* Main Content */
.luxo-main-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
}

.luxo-image-container {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.luxo-image-card {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.luxo-image-card img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

.luxo-quote-below {
	text-align: center;
	padding: 0 20px;
}

.luxo-quote-below blockquote {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	margin: 0;
	color: #2a2a2a;
	background: rgba(211, 179, 122, .08);
	border: 1px solid rgba(211, 179, 122, .2);
	border-radius: 16px;
	padding: 24px 32px;
}

/* Content Side */
.luxo-content-side {
	padding-left: 20px;
}

.luxo-benefits p {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.6;
	color: #2a2a2a;
	margin: 0 0 24px;
}

.luxo-subtle {
	margin: 24px 0 0;
	color: #4a4a4a;
	font-size: clamp(.95rem, 1.6vw, 1.05rem);
	line-height: 1.6;
	font-style: italic;
}

.benefits-flow {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 40px;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
}

.benefit-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-500), var(--red-500));
	flex-shrink: 0;
	box-shadow: 0 0 0 4px rgba(211, 179, 122, .15);
}

.benefit-item span {
	font-size: clamp(.95rem, 1.5vw, 1.05rem);
	color: #2a2a2a;
	line-height: 1.5;
}

/* CTA Section */
.luxo-cta {
	text-align: center;
}

.cta-invitation {
	font-size: clamp(1rem, 1.7vw, 1.125rem);
	color: #2a2a2a;
	margin: 0 0 20px;
	font-weight: 500;
}

/* Session Invitation */
.session-invitation {
	text-align: center;
	margin-top: 40px;
}

.session-invitation > p {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	color: #2a2a2a;
	margin: 0 auto 30px;
	max-width: 60ch;
	line-height: 1.6;
}

.luxoges-note {
	font-size: clamp(.95rem, 1.5vw, 1.05rem);
	color: #7a6a4f;
	background: rgba(211, 179, 122, .12);
	border-left: 3px solid var(--gold-500);
	padding: 12px 16px;
	border-radius: 8px;
	margin: 30px auto 0;
	max-width: 70ch;
	line-height: 1.5;
}

.session-choices {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.choice-card {
	background: rgba(255, 255, 255, .8);
	border: 1px solid rgba(233, 228, 218, .6);
	border-radius: 16px;
	padding: 24px 20px;
	text-align: center;
	transition: all .3s ease;
	position: relative;
}

.choice-card:hover {
	background: rgba(255, 255, 255, .95);
	border-color: var(--gold-500);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.choice-card:hover .choice-icon {
	background: var(--gold-500);
	transform: scale(1.1);
}

.choice-card:hover .choice-icon i {
	color: #1a1a1a;
}

.choice-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 16px;
	background: rgba(211, 179, 122, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}

.choice-icon i {
	font-size: 1.5rem;
	color: var(--gold-600);
}

.choice-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.choice-card h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin: 0 0 10px;
	line-height: 1.3;
}

.choice-card p {
	font-size: .95rem;
	color: #4a4a4a;
	margin: 0;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
	.luxo-main-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.luxo-image-card img {
		height: 300px;
	}

	.luxo-content-side {
		padding-left: 0;
	}

	.luxo-quote-below {
		padding: 0 16px;
	}

	.luxo-quote-below blockquote {
		padding: 20px 24px;
		font-size: clamp(1rem, 1.6vw, 1.125rem);
	}

	.session-choices {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.choice-card {
		padding: 20px 16px;
	}

	.choice-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 12px;
	}

	.choice-icon i {
		font-size: 1.25rem;
	}
}

/* Quote Section */
.quote-section {
	position: relative;
	margin: 80px 0;
	min-height: 300px;
	background: linear-gradient(135deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .25)), url('images/nature2.jpg') center/cover no-repeat;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	isolation: isolate;
}

.quote-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
}

.quote-content {
	text-align: center;
	max-width: 800px;
	color: var(--text-on-dark);
}

.quote-text {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(1.5rem, 3.5vw, 2.5rem);
	line-height: 1.4;
	margin: 0 0 24px;
	font-weight: 500;
	letter-spacing: .02em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.quote-author {
	display: block;
	font-style: normal;
	font-weight: 500;
	font-size: clamp(1rem, 2vw, 1.25rem);
	opacity: .9;
	letter-spacing: .04em;
	position: relative;
}

.quote-author::before {
	content: "— ";
	opacity: .7;
}

/* Responsive quote section */
@media (max-width: 768px) {
	.quote-section {
		min-height: 250px;
		margin: 60px 0;
	}

	.quote-overlay {
		padding: 40px 24px;
	}

	.quote-text {
		margin-bottom: 20px;
	}
}

/* Prestations Overview Section */
.prestations-overview {
	padding: 100px 0;
	position: relative;
	background: linear-gradient(135deg, rgba(211, 179, 122, .04) 0%, rgba(255, 255, 255, 1) 35%, rgba(197, 59, 54, .03) 100%);
	border: 1px solid rgba(233, 228, 218, .6);
	border-radius: 24px;
	margin: 0 16px;
}

.prestations-header {
	text-align: center;
	margin-bottom: 80px;
}

.prestations-intro {
	font-family: "Arboria", sans-serif;
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	font-weight: bold;
	line-height: 1.6;
	color: #2a2a2a;
	margin: 24px auto 0;
	max-width: 65ch;
	font-style: normal;
	opacity: .9;
}

/* Prestations Cards */
.prestations-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 80px;
}

.prestation-card {
	background: rgba(255, 255, 255, .95);
	border: 1px solid rgba(233, 228, 218, .5);
	border-radius: 24px;
	padding: 40px 32px;
	position: relative;
	transition: all .4s ease;
	overflow: hidden;
}

.prestation-card:hover::before {
	opacity: 1;
}

.prestation-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
	border-color: rgba(211, 179, 122, .8);
}

.card-number {
	position: absolute;
	top: -1px;
	right: 32px;
	font-family: "Playfair Display", serif;
	font-size: 4rem;
	font-weight: 300;
	color: var(--gold-500);
	opacity: .15;
	line-height: 1;
	pointer-events: none;
}

.prestation-card h3 {
	font-family: "Arboria", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	color: #1a1a1a;
	margin: 0 0 20px;
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.card-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #2a2a2a;
	margin: 0 0 24px;
	position: relative;
	z-index: 2;
}

.card-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	z-index: 2;
}

.card-details span {
	font-size: .9rem;
	color: #6b6b6b;
	position: relative;
	padding-left: 20px;
	line-height: 1.4;
}

.card-details span::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--gold-500);
	font-weight: bold;
}

/* Philosophy Section */
.soins-philosophy {
	margin-bottom: 60px;
	text-align: center;
}

.philosophy-content h3 {
	font-family: "Arboria", serif;
	font-weight: 600;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: #1a1a1a;
	margin: 0 0 20px;
	position: relative;
	display: inline-block;
	padding-bottom: 16px;
}

.philosophy-content > p {
	font-family: "Arboria", sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	font-weight: bold;
	line-height: 1.6;
	color: #2a2a2a;
	margin: 0 auto 40px;
	max-width: 60ch;
	font-style: normal;
}

.location-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
}

.location-item {
	display: flex;
	align-items: center;
	gap: 16px;
	text-align: left;
	padding: 24px 20px;
	background: rgba(255, 255, 255, .7);
	border-radius: 16px;
	border: 1px solid rgba(233, 228, 218, .4);
	transition: all .3s ease;
}

.location-item:hover {
	background: rgba(255, 255, 255, .9);
	border-color: var(--gold-500);
	transform: translateY(-2px);
}

.location-accent {
	width: 4px;
	height: 40px;
	background: linear-gradient(180deg, var(--gold-500), var(--red-500));
	border-radius: 2px;
	flex-shrink: 0;
}

.location-text h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.location-text h4 i {
	font-size: 1rem;
	color: var(--gold-600);
	width: 16px;
	text-align: center;
}

.location-icon-img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-right: 8px;
	vertical-align: middle;
}

.location-text p {
	font-size: .95rem;
	color: #4a4a4a;
	margin: 0;
	line-height: 1.4;
}

/* CTA Button */
.prestations-cta {
	text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
	.prestations-cards {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 60px;
	}

	.prestation-card {
		padding: 32px 24px;
	}

	.card-number {
		font-size: 3rem;
		right: 24px;
	}

	.location-options {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.location-item {
		padding: 20px 16px;
	}
}

/* Placeholders for remaining sections */
.section-placeholder {
	height: 40vh;
	border-radius: 16px;
	background: #f7f5ef;
	border: 1px solid #e9e4da;
	margin: 24px 0
}

/* Responsive */
@media (max-width: 960px) {
	.nav-desktop {
		display: none
	}

	.nav-toggle {
		display: flex
	}
}

@media (min-width: 961px) {
	.nav-mobile {
		display: none !important
	}
}

/* Logo Center Section */
.logo-center-section {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 60px 16px;
	margin: 40px 0;
}

.logo-center-section img {
	max-width: 300px;
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
	transition: transform .3s ease;
}

.logo-center-section img:hover {
	transform: scale(1.05);
}

/* Responsive logo center */
@media (max-width: 768px) {
	.logo-center-section {
		padding: 40px 16px;
		margin: 30px 0;
	}

	.logo-center-section img {
		max-width: 250px;
	}
}

@media (max-width: 480px) {
	.logo-center-section {
		padding: 30px 16px;
		margin: 20px 0;
	}

	.logo-center-section img {
		max-width: 200px;
	}
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	position: relative;
	background: linear-gradient(135deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .3)), url('images/cta.jpg') center/cover no-repeat;
	border: 1px solid rgba(233, 228, 218, .8);
	border-radius: 24px;
	margin: 80px 16px;
	overflow: hidden;
}

.cta-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

.cta-text {
	text-align: left;
}

.cta-title {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	color: var(--text-on-dark);
	margin: 0 0 20px;
	line-height: 1.3;
	letter-spacing: .02em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.cta-subtitle {
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	line-height: 1.6;
	color: var(--text-on-dark);
	margin: 0;
	max-width: 50ch;
	opacity: .95;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.cta-actions {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.btn-cta-primary {
	display: inline-block;
	padding: 18px 32px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--red-500), #d84339);
	color: #ffffff;
	font-weight: 700;
	letter-spacing: .03em;
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	box-shadow: 0 8px 24px rgba(197, 59, 54, .35);
	transition: all .3s ease;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
}

.btn-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(197, 59, 54, .45);
	filter: brightness(1.1);
}

.cta-note {
	font-size: .9rem;
	color: #6b6b6b;
	margin: 0;
	font-style: italic;
	opacity: .85;
}

/* Responsive CTA */
@media (max-width: 768px) {
	.cta-section {
		padding: 60px 0;
		margin: 60px 16px;
	}

	.cta-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.cta-text {
		text-align: center;
	}

	.cta-subtitle {
		max-width: none;
	}

	.btn-cta-primary {
		width: 100%;
		max-width: 320px;
	}
}

/* Animations reveal on scroll */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all .6s ease-out;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.prestations-category.reveal {
	transform: translateY(40px) scale(0.98);
}

.prestations-category.reveal.is-visible {
	transform: translateY(0) scale(1);
}

.mode-card.reveal {
	transform: translateY(50px) scale(0.95);
}

.mode-card.reveal.is-visible {
	transform: translateY(0) scale(1);
}

.prestations-cta.reveal {
	transform: translateY(20px);
}

.prestations-cta.reveal.is-visible {
	transform: translateY(0);
}

/* Site Footer */
.site-footer {
	background: #ffffff;
	border-top: 1px solid rgba(233, 228, 218, .8);
	margin-top: 80px;
	padding: 60px 0 30px;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 60px;
	align-items: start;
	margin-bottom: 50px;
}

.footer-brand {
	max-width: 400px;
}

.footer-logo {
	height: 60px;
	width: auto;
	margin-bottom: 16px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
}

@media screen and (max-width:768px) {
	.footer-logo {
		margin:15px auto;
	}
}

.footer-tagline {
	font-family: "Arboria", serif;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0;
}

.footer-logo-centre {
	max-width: 200px;
}

@media screen and (max-width:768px) {
	.footer-logo-centre {
		margin: 0 auto;
	}
}

.footer-nav h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: #1a1a1a;
	margin: 0 0 20px;
	position: relative;
	padding-bottom: 12px;
}

.footer-nav h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
}

.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-nav a {
	font-weight: 500;
	color: #2a2a2a;
	transition: color .3s ease;
	position: relative;
}

.footer-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 1px;
	width: 0;
	background: var(--red-500);
	transition: width .25s ease;
}

.footer-nav a:hover {
	color: var(--red-500);
}

.footer-nav a:hover::after {
	width: 100%;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	border-top: 1px solid rgba(233, 228, 218, .6);
}

.footer-copyright p {
	font-size: .9rem;
	color: #6b6b6b;
	margin: 0;
}

.footer-legal a {
	font-size: .9rem;
	color: #6b6b6b;
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: all .3s ease;
}

.footer-legal a:hover {
	color: var(--red-500);
	text-decoration-color: var(--red-500);
}

/* Footer Responsive */
@media (max-width: 768px) {
	.site-footer {
		padding: 40px 0 20px;
		margin-top: 60px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-brand {
		max-width: none;
	}

	.footer-nav h3::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
		padding-top: 24px;
	}

	.footer-copyright,
	.footer-legal {
		order: 0;
	}

	.footer-legal {
		order: 1;
	}
}

/* About Story Section - Enhanced */
.about-story {
	padding: 100px 0;
	position: relative;
}

.story-header {
	text-align: center;
	margin-bottom: 80px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.story-lead {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	line-height: 1.5;
	color: var(--gold-600);
	margin: 32px auto 0;
	max-width: 60ch;
}

.story-content {
	max-width: 1200px;
	margin: 0 auto;
}

/* Intro Grid with Image */
.story-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 80px;
}

.story-intro-text {
	position: relative;
}

.story-opening {
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0 0 40px;
	font-weight: 400;
}

.story-intro-text p:last-child {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 40px 0 0;
}

/* Enhanced Highlight */
.story-highlight {
	background: linear-gradient(135deg, rgba(211, 179, 122, .08), rgba(197, 59, 54, .04));
	border: 1px solid rgba(211, 179, 122, .2);
	border-radius: 20px;
	padding: 0;
	margin: 40px 0;
	position: relative;
	overflow: hidden;
}

.highlight-content {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px 40px;
}

.highlight-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(191, 153, 88, .3);
}

.highlight-icon span {
	font-size: 1.5rem;
}

.highlight-text p {
	font-family: "Playfair Display", serif;
	font-size: clamp(1rem, 1.7vw, 1.2rem);
	line-height: 1.6;
	color: #1a1a1a;
	margin: 0 0 8px;
}

.highlight-text p:last-child {
	margin: 0;
}

/* Image Container */
.story-intro-image {
	position: relative;
}

.image-container {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.image-container img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, .75));
	padding: 40px 30px 30px;
	color: var(--text-on-dark);
}

.image-overlay blockquote {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.5;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

/* Story Quote Below Image */
.story-quote-below {
	text-align: center;
	padding: 24px 20px 0;
}

.story-quote-below blockquote {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	margin: 0;
	color: var(--gold-600);
	background: rgba(211, 179, 122, .08);
	border: 1px solid rgba(211, 179, 122, .2);
	border-radius: 16px;
	padding: 24px 32px;
}

/* Timeline Journey */
.story-journey-section {
	margin-bottom: 80px;
}

.journey-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.journey-timeline::before {
	content: "";
	position: absolute;
	left: 30px;
	top: 30px;
	bottom: 30px;
	width: 3px;
	background: linear-gradient(180deg, var(--gold-500), var(--red-500));
	border-radius: 2px;
}

.timeline-item {
	position: relative;
	padding-left: 80px;
	margin-bottom: 60px;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-dot {
	position: absolute;
	left: 18px;
	top: 8px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	border: 4px solid #ffffff;
	box-shadow: 0 0 0 2px rgba(211, 179, 122, .3), 0 4px 12px rgba(0, 0, 0, .1);
}

.timeline-dot-special {
	background: linear-gradient(135deg, var(--red-500), #d84339);
	box-shadow: 0 0 0 2px rgba(197, 59, 54, .3), 0 4px 12px rgba(0, 0, 0, .1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 2px rgba(197, 59, 54, .3), 0 0 0 0 rgba(197, 59, 54, .7); }
	70% { box-shadow: 0 0 0 2px rgba(197, 59, 54, .3), 0 0 0 10px rgba(197, 59, 54, 0); }
	100% { box-shadow: 0 0 0 2px rgba(197, 59, 54, .3), 0 0 0 0 rgba(197, 59, 54, 0); }
}

.timeline-content h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	color: #1a1a1a;
	margin: 0 0 16px;
}

.timeline-text p {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0;
}

/* Revelation Section */
.story-revelation {
	text-align: center;
}

.revelation-content {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.story-quote {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	line-height: 1.5;
	color: #7a6a4f;
	background: rgba(211, 179, 122, .08);
	border: 1px solid rgba(211, 179, 122, .2);
	border-radius: 20px;
	padding: 40px 48px;
	margin: 0;
	position: relative;
}

.story-quote::before {
	content: '"';
	position: absolute;
	top: -12px;
	left: 32px;
	font-size: 5rem;
	color: var(--gold-500);
	opacity: .25;
	line-height: 1;
}

.revelation-reflection {
	max-width: 800px;
	margin: 0 auto;
}

.revelation-reflection p {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0 0 24px;
}

.revelation-reflection p:last-child {
	margin-bottom: 0;
}

/* Enhanced Conclusion */
.story-conclusion {
	background: linear-gradient(135deg, rgba(211, 179, 122, .06), rgba(197, 59, 54, .02));
	border-radius: 24px;
	border: 1px solid rgba(211, 179, 122, .15);
	padding: 48px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.conclusion-main {
	flex: 1;
}

.conclusion-key {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: #1a1a1a;
	margin: 0 0 16px;
	line-height: 1.3;
}

.conclusion-promise {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	color: var(--red-500);
	margin: 0;
	line-height: 1.4;
	font-style: normal;
}

.conclusion-decoration {
	flex-shrink: 0;
}

.decoration-light {
	font-size: 3rem;
	display: block;
	animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
	from { opacity: 0.5; transform: scale(1); }
	to { opacity: 1; transform: scale(1.1); }
}

/* Journey Gallery */
.journey-gallery {
	margin-top: 80px;
	padding: 60px 0;
	text-align: center;
}

.gallery-header {
	margin-bottom: 40px;
}

.gallery-subtitle {
	font-family: "Arboria", sans-serif;
	font-weight: bold;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	color: var(--gold-600);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.gallery-images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}

.gallery-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
	transition: all .4s ease;
	background: #ffffff;
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.gallery-item img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, .8));
	color: #ffffff;
	padding: 40px 20px 20px;
	font-family: "Arboria", sans-serif;
	font-weight: bold;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	text-transform: uppercase;
	letter-spacing: .06em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

/* Responsive */
@media (max-width: 768px) {
	.about-story {
		padding: 60px 0;
	}

	.story-header {
		margin-bottom: 60px;
	}

	.story-intro-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 60px;
	}

	.story-intro-image {
		order: -1;
	}

	.image-container img {
		height: 300px;
	}

	.highlight-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 28px 24px;
	}

	.highlight-icon {
		width: 50px;
		height: 50px;
	}

	.timeline-item {
		padding-left: 60px;
		margin-bottom: 40px;
	}

	.journey-timeline::before {
		left: 22px;
	}

	.timeline-dot {
		left: 10px;
		width: 20px;
		height: 20px;
	}

	.story-quote {
		padding: 28px 32px;
	}

	.story-quote-below {
		padding: 20px 16px 0;
	}

	.story-quote-below blockquote {
		padding: 20px 24px;
		font-size: clamp(1rem, 1.6vw, 1.125rem);
	}

	.story-conclusion {
		flex-direction: column;
		text-align: center;
		padding: 32px 24px;
		gap: 24px;
	}

	.decoration-light {
		font-size: 2rem;
	}

	.journey-gallery {
		margin-top: 60px;
		padding: 40px 0;
	}

	.gallery-header {
		margin-bottom: 32px;
	}

	.gallery-images {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 400px;
	}

	.gallery-item img {
		height: 250px;
	}

	.gallery-caption {
		padding: 30px 16px 16px;
	}
}

/* About Services Section */
.about-services {
	padding: 120px 0;
	background: linear-gradient(135deg, rgba(247, 245, 239, .4) 0%, rgba(255, 255, 255, 1) 50%, rgba(233, 228, 218, .3) 100%);
	border: 1px solid rgba(233, 228, 218, .6);
	border-radius: 24px;
	margin: 0 16px;
}

.services-header {
	text-align: center;
	margin-bottom: 80px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.services-intro {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	line-height: 1.6;
	color: var(--gold-600);
	margin: 32px auto 0;
	max-width: 65ch;
}

.services-content {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

/* Services Method Section */
.services-method {
	text-align: center;
}

.method-description {
	max-width: 800px;
	margin: 0 auto 60px;
}

.method-description p {
	font-size: clamp(1rem, 1.7vw, 1.125rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0 0 24px;
}

.method-lead {
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0 !important;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.service-card {
	background: rgba(255, 255, 255, .9);
	border-left: 4px solid var(--gold-500);
	border-radius: 12px;
	padding: 24px 15px;
	text-align: left;
	transition: all .3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
	position: relative;
}


.service-card:hover {
	transform: translateX(8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
	background: rgba(255, 255, 255, 1);
}

.service-card:hover::before {
	width: 6px;
	background: linear-gradient(135deg, var(--red-500), var(--gold-500));
}

.service-card h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	color: #1a1a1a;
	margin: 0;
	line-height: 1.4;
	position: relative;
}

.service-card h3::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold-500);
	opacity: .6;
	transition: all .3s ease;
}

.service-card:hover h3::after {
	background: var(--red-500);
	opacity: 1;
	transform: translateY(-50%) scale(1.2);
}

/* Consciousness Section */
.consciousness-section {
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(233, 228, 218, .8);
	border-radius: 24px;
	padding: 60px 50px;
	text-align: center;
}

.consciousness-header h3 {
	font-family: "Arboria", sans-serif;
	font-weight: 600;
	font-size: clamp(1.5rem, 2.5vw, 1.875rem);
	color: #1a1a1a;
	margin: 0 0 24px;
	line-height: 1.4;
}

.consciousness-question {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	color: var(--red-500);
	margin: 0 0 16px;
	font-weight: 500;
}

.consciousness-intro {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	color: #2a2a2a;
	margin: 0 0 40px;
	font-weight: 500;
}

.reasons-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
}

.reason-card {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	text-align: left;
	padding: 32px;
	background: linear-gradient(135deg, rgba(211, 179, 122, .04), rgba(255, 255, 255, .8));
	border: 1px solid rgba(211, 179, 122, .2);
	border-radius: 20px;
}

.reason-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--red-500), #d84339);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(197, 59, 54, .3);
}

.reason-number {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.5rem;
	font-family: "Playfair Display", serif;
}

.reason-content p {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0;
}

/* Nature Philosophy */
.nature-philosophy {
	text-align: center;
}

.nature-quote {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	line-height: 1.6;
	color: var(--gold-600);
	background: rgba(211, 179, 122, .08);
	border: 1px solid rgba(211, 179, 122, .2);
	border-radius: 20px;
	padding: 40px 48px;
	margin: 0 0 32px;
	position: relative;
}

.nature-quote::before {
	content: '"';
	position: absolute;
	top: -12px;
	left: 32px;
	font-size: 4rem;
	color: var(--gold-500);
	opacity: .25;
	line-height: 1;
}

.approach-description {
	font-family: "Arboria", sans-serif;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	font-weight: bold;
	color: var(--red-500);
	margin: 0;
	font-style: normal;
}

/* Locations Section */
.locations-section h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.5rem, 2.5vw, 1.875rem);
	color: #1a1a1a;
	text-align: center;
	margin: 0 0 48px;
	position: relative;
	display: inline-block;
	width: 100%;
	padding-bottom: 16px;
}

.locations-section h3::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.location-card {
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(233, 228, 218, .6);
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	transition: all .3s ease;
	position: relative;
}

.location-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
	border-color: var(--gold-500);
}

.location-header {
	margin-bottom: 20px;
}

.location-emoji {
	font-size: 2.5rem;
	margin-bottom: 16px;
	display: block;
}

.location-emoji img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.location-card h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	color: #1a1a1a;
	margin: 0;
	line-height: 1.3;
}

.location-card p {
	font-size: clamp(.95rem, 1.5vw, 1.05rem);
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0;
}

/* Philosophy Conclusion */
.philosophy-conclusion {
	text-align: center;
	background: linear-gradient(135deg, rgba(197, 59, 54, .04), rgba(211, 179, 122, .06));
	border: 1px solid rgba(211, 179, 122, .3);
	border-radius: 24px;
	padding: 48px 40px;
}

.conclusion-text p {
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0 0 24px;
	max-width: 70ch;
	margin-left: auto;
	margin-right: auto;
}

.conclusion-text p:last-child {
	margin-bottom: 0;
}

.guiding-principles {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: 600;
	color: var(--red-500) !important;
}

.final-philosophy {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	color: #7a6a4f !important;
}

/* Responsive */
@media (max-width: 768px) {
	.about-services {
		padding: 80px 0;
	}

	.services-content {
		gap: 60px;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.service-card {
		padding: 20px 24px;
	}

	.service-card:hover {
		transform: translateX(6px);
	}

	.consciousness-section {
		padding: 40px 24px;
	}

	.reason-card {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 24px 20px;
	}

	.reason-icon {
		width: 50px;
		height: 50px;
		margin: 0 auto;
	}

	.reason-number {
		font-size: 1.25rem;
	}

	.locations-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.location-card {
		padding: 28px 20px;
	}

	.location-emoji {
		font-size: 2rem;
		margin-bottom: 12px;
	}

	.philosophy-conclusion {
		padding: 32px 24px;
	}

	.nature-quote {
		padding: 28px 32px;
	}
}

/* Reservation Section */
.reservation-section {
	padding: 0;
	margin: 80px 16px 0;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .4)), url('images/nature.jpg') center/cover no-repeat;
	min-height: 500px;
	display: flex;
	align-items: center;
}

.reservation-overlay {
	width: 100%;
	padding: 80px 0;
}

.reservation-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	color: var(--text-on-dark);
}

.reservation-title {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	color: #ffffff;
	margin: 0 0 24px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
	line-height: 1.2;
}

.reservation-intro {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	color: rgba(255, 255, 255, .9);
	margin: 0 0 48px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
	font-weight: 400;
}

.reservation-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0 0 48px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 16px;
	padding: 20px 28px;
	backdrop-filter: blur(10px);
	transition: all .3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, .15);
	border-color: rgba(255, 255, 255, .3);
	transform: translateY(-2px);
}

.feature-arrow {
	font-size: 1.25rem;
	color: var(--gold-500);
	font-weight: 600;
	flex-shrink: 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.feature-text {
	font-size: clamp(1rem, 1.7vw, 1.125rem);
	color: #ffffff;
	font-weight: 500;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.reservation-platform {
	margin: 0 0 48px;
}

.platform-description {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	color: rgba(255, 255, 255, .85);
	margin: 0;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
}

.platform-description strong {
	color: var(--gold-500);
	font-weight: 600;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

.reservation-cta {
	margin-top: 48px;
}

.btn-reservation {
	display: inline-block;
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: #1a1a1a;
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	text-decoration: none;
	padding: 18px 48px;
	border-radius: 50px;
	transition: all .3s ease;
	box-shadow: 0 8px 25px rgba(191, 153, 88, .4);
	text-transform: none;
	letter-spacing: 0.5px;
	border: 2px solid transparent;
}

.btn-reservation:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(191, 153, 88, .5);
	background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
	border-color: rgba(255, 255, 255, .3);
}

.btn-reservation:active {
	transform: translateY(-1px);
}

/* Reservation Responsive */
@media (max-width: 768px) {
	.reservation-section {
		margin: 60px 16px 0;
		min-height: 400px;
	}

	.reservation-overlay {
		padding: 60px 0;
	}

	.reservation-features {
		gap: 16px;
		margin-bottom: 40px;
	}

	.feature-item {
		padding: 16px 24px;
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.feature-arrow {
		font-size: 1.5rem;
	}

	.reservation-platform {
		margin-bottom: 40px;
	}

	.btn-reservation {
		padding: 16px 40px;
		font-size: 1.125rem;
	}
}

@media (max-width: 480px) {
	.reservation-section {
		margin: 40px 8px 0;
	}

	.feature-item {
		padding: 14px 20px;
	}

	.btn-reservation {
		padding: 14px 32px;
	}
}

/* Closing Section */
.closing-section {
	padding: 100px 0;
}

.closing-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.closing-message {
	text-align: left;
}

.personal-invitation {
	margin-bottom: 40px;
}

.invitation-text {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	line-height: 1.6;
	color: #2a2a2a;
	margin: 0 0 8px;
	font-weight: 400;
}

.closing-quote {
	margin-bottom: 48px;
}

.signature-quote {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	line-height: 1.5;
	color: var(--red-500);
	margin: 0;
	position: relative;
	padding-left: 32px;
}

.signature-quote::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -8px;
	font-size: 3rem;
	color: var(--gold-500);
	opacity: .4;
	line-height: 1;
}

.signature-section {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.signature-name h3 {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: clamp(1.875rem, 3vw, 2.25rem);
	color: #1a1a1a;
	margin: 0 0 8px;
	letter-spacing: 1px;
}

.signature-method {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	color: var(--gold-600);
	margin: 0;
	font-weight: 500;
}

.credentials {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.credential-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, .7);
	border: 1px solid rgba(233, 228, 218, .5);
	border-radius: 12px;
	transition: all .3s ease;
}

.credential-item:hover {
	background: rgba(255, 255, 255, .9);
	border-color: var(--gold-500);
	transform: translateX(6px);
}

.credential-icon {
	font-size: 1.25rem;
	flex-shrink: 0;
}

.credential-text {
	font-size: clamp(.95rem, 1.5vw, 1.05rem);
	color: #2a2a2a;
	font-weight: 500;
	margin: 0;
}

.inspirational-quote {
	display: flex;
	align-items: center;
	justify-content: center;
}

.quote-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(247, 245, 239, .8));
	border: 2px solid rgba(211, 179, 122, .2);
	border-radius: 24px;
	padding: 48px 40px;
	text-align: center;
	position: relative;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
	overflow: hidden;
}

.quote-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500), var(--gold-500));
}

.featured-quote {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0 0 24px;
	font-weight: 400;
	position: relative;
}

.featured-quote::before,
.featured-quote::after {
	font-size: 2.5rem;
	color: var(--gold-500);
	opacity: .3;
	position: absolute;
}

.featured-quote::before {
	content: '"';
	top: -16px;
	left: -8px;
}

.featured-quote::after {
	content: '"';
	bottom: -24px;
	right: -8px;
}

.quote-attribution {
	font-family: "Playfair Display", serif;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	color: var(--red-500);
	font-weight: 600;
	font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
	.closing-section {
		padding: 80px 0;
	}

	.closing-content {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}

	.closing-message {
		text-align: center;
	}

	.signature-quote {
		padding-left: 0;
		text-align: center;
	}

	.signature-quote::before {
		left: 50%;
		transform: translateX(-50%);
		top: -12px;
	}

	.credentials {
		align-items: center;
		max-width: 400px;
		margin: 0 auto;
	}

	.credential-item:hover {
		transform: translateY(-2px);
	}

	.quote-card {
		padding: 36px 28px;
	}
}

@media (max-width: 480px) {
	.closing-section {
		padding: 60px 0;
	}

	.closing-content {
		gap: 48px;
	}

	.quote-card {
		padding: 28px 24px;
	}

	.signature-section {
		gap: 24px;
	}

	.credentials {
		gap: 12px;
	}
}

/* Luxopuncture Introduction Section */
.luxopuncture-intro {
	padding: 120px 0;
}

.luxo-intro-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.luxo-intro-text {
	text-align: center;
}

.intro-header {
	text-align: center;
	margin-bottom: 48px;
}

.luxo-main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin-top: 60px;
}

.intro-description {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.intro-lead {
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0;
	font-weight: 400;
}

.intro-philosophy {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: var(--red-500);
	margin: 0;
	font-weight: 500;
	padding: 24px 32px;
	background: rgba(197, 59, 54, .04);
	border-left: 4px solid var(--red-500);
	border-radius: 0 12px 12px 0;
}

.benefits-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.benefits-title {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.375rem, 2.2vw, 1.625rem);
	color: #1a1a1a;
	margin: 0;
	position: relative;
	padding-bottom: 16px;
}

.benefits-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
}

.benefits-intro {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	color: #2a2a2a;
	margin: 0;
	font-weight: 500;
}

.benefits-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, .8);
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 12px;
	transition: all .3s ease;
}

.benefit-item:hover {
	background: rgba(255, 255, 255, 1);
	border-color: var(--gold-500);
	transform: translateX(8px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.benefit-icon {
	font-size: 1.25rem;
	flex-shrink: 0;
	opacity: .8;
}

.benefit-text {
	font-size: clamp(.95rem, 1.5vw, 1.05rem);
	color: #2a2a2a;
	margin: 0;
	line-height: 1.5;
	font-weight: 400;
}

.luxo-intro-image {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.luxo-image-container {
	position: relative;
	width: 100%;
	max-width: 500px;
	border-radius: 24px;
	overflow: hidden;
}

.luxo-image-container img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

.luxo-image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, .7));
	padding: 40px 32px 32px;
	color: #ffffff;
}

.overlay-content blockquote {
	font-family: "Playfair Display", serif;
	font-style: italic;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.5;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	position: relative;
}

.overlay-content blockquote::before {
	content: '"';
	position: absolute;
	top: -12px;
	left: -16px;
	font-size: 3rem;
	color: var(--gold-500);
	opacity: .6;
	line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
	.luxopuncture-intro {
		padding: 80px 0;
	}

	.luxo-intro-content {
		gap: 50px;
	}

	.intro-header {
		margin-bottom: 40px;
	}

	.luxo-main-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-top: 40px;
	}

	.intro-philosophy {
		padding: 20px 24px;
		border-left: none;
		border-top: 4px solid var(--red-500);
		border-radius: 12px;
	}

	.benefits-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.benefit-item:hover {
		transform: translateY(-2px);
	}

	.luxo-image-container {
		max-width: 450px;
		margin: 0 auto;
	}

	.luxo-image-container img {
		height: 350px;
	}

	.luxo-image-overlay {
		padding: 32px 24px 24px;
	}
}

@media (max-width: 480px) {
	.luxopuncture-intro {
		padding: 60px 0;
		margin: 0 8px;
	}

	.luxo-intro-content {
		gap: 48px;
	}

	.luxo-intro-text {
		gap: 32px;
	}

	.benefits-list {
		gap: 12px;
	}

	.benefit-item {
		padding: 14px 16px;
	}

	.intro-philosophy {
		padding: 16px 20px;
	}
}

/* Why Luxopuncture Section */
.why-luxopuncture {
	padding: 120px 0;
	background: #ffffff;
	margin: 80px 0 0;
}

.why-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	text-align: center;
}

.why-header {
	margin-bottom: 48px;
}

.why-intro {
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0 0 48px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.why-main-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.hormones-benefits-flex {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.hormones-section {
	flex: 1;
	margin-bottom: 0;
}

.hormones-title {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.375rem, 2.2vw, 1.625rem);
	color: #1a1a1a;
	margin: 0 0 48px;
	position: relative;
	display: inline-block;
	padding-bottom: 16px;
}

.hormones-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
}

.hormones-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: 0 auto;
}

.hormone-card {
	text-align: center;
	padding: 24px 20px;
	transition: all .3s ease;
}

.hormone-card:hover {
	transform: translateY(-4px);
}

.hormone-icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 16px;
	opacity: .8;
}

.hormone-card h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.125rem, 1.7vw, 1.25rem);
	color: #1a1a1a;
	margin: 0 0 8px;
}

.hormone-card p {
	font-size: clamp(.95rem, 1.4vw, 1rem);
	color: #6a6a6a;
	margin: 0;
	line-height: 1.5;
}

.benefits-section {
	flex: 1;
	margin-bottom: 0;
}

.benefits-lead {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: var(--red-500);
	margin: 0 0 32px;
}

.actions-title {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 1.8vw, 1.375rem);
	color: #1a1a1a;
	margin: 0 0 24px;
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
}

.actions-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
}

.actions-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin: 0 auto;
}

.action-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: rgba(247, 245, 239, .3);
	border-radius: 8px;
	transition: all .3s ease;
	text-align: left;
}

.action-item:hover {
	background: rgba(247, 245, 239, .5);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.action-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-500), var(--red-500));
	flex-shrink: 0;
}

.action-text {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	color: #2a2a2a;
	line-height: 1.5;
	margin: 0;
}

.conclusion-section {
	text-align: center;
}

.why-conclusion {
	font-family: "Arboria", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	padding: 32px 0;
	position: relative;
}

.why-conclusion::before {
	content: '"';
	position: absolute;
	left: 50%;
	top: -16px;
	transform: translateX(-50%);
	font-size: 3rem;
	color: var(--gold-500);
	opacity: .3;
	line-height: 1;
	font-family: serif;
}

.why-conclusion::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
}

/* Responsive */
@media (max-width: 768px) {
	.why-luxopuncture {
		padding: 80px 0;
		margin: 60px 0 0;
	}

	.why-content {
		padding: 0 16px;
	}

	.why-header {
		margin-bottom: 40px;
	}

	.why-intro {
		margin-bottom: 40px;
	}

	.why-main-content {
		gap: 50px;
	}

	.hormones-benefits-flex {
		flex-direction: column;
		gap: 50px;
	}

	.hormones-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hormone-card {
		padding: 20px 16px;
	}

	.action-item {
		padding: 14px 16px;
	}

	.why-conclusion::before {
		font-size: 2.5rem;
		top: -12px;
	}

	.hormones-benefits-flex {
		align-items:center;
	}
}

@media (max-width: 480px) {
	.why-luxopuncture {
		padding: 60px 0;
		margin: 40px 0 0;
	}

	.why-content {
		padding: 0 8px;
	}

	.why-header {
		margin-bottom: 40px;
	}

	.why-intro {
		margin-bottom: 40px;
	}

	.hormones-section {
		margin-bottom: 50px;
	}

	.hormone-card {
		padding: 20px 16px;
	}

	.hormone-icon {
		font-size: 2rem;
		margin-bottom: 12px;
	}

	.benefits-section {
		margin-bottom: 40px;
	}

	.actions-list {
		gap: 16px;
		margin-bottom: 40px;
	}

	.action-item {
		padding: 14px 16px;
		gap: 16px;
	}

	.why-conclusion {
		padding: 24px 0;
	}

	.why-conclusion::before {
		font-size: 2rem;
		top: -8px;
	}
}

/* Prestations Catalog Section */
.prestations-catalog {
	padding: 120px 0;
	margin: 80px 16px 0;
}

.catalog-header {
	text-align: center;
	margin-bottom: 60px;
}

.catalog-intro {
	font-family: "Arboria", sans-serif;
	font-weight: bold;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: #5a5a5a;
	margin: 24px auto 0;
	max-width: 700px;
}

.catalog-controls {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 48px;
	align-items: center;
}

.search-bar {
	position: relative;
	max-width: 400px;
	width: 100%;
}

.search-bar input {
	width: 100%;
	padding: 16px 20px 16px 50px;
	border: 2px solid rgba(233, 228, 218, .4);
	border-radius: 50px;
	font-size: 1rem;
	background: rgba(255, 255, 255, .9);
	transition: all .3s ease;
	outline: none;
}

.search-bar input:focus {
	border-color: var(--gold-500);
	box-shadow: 0 0 0 3px rgba(211, 179, 122, .2);
	background: #ffffff;
}

.search-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.125rem;
	opacity: .6;
	pointer-events: none;
}

.filter-tabs {
	display: flex;
	gap: 8px;
	background: rgba(255, 255, 255, .6);
	padding: 8px;
	border-radius: 50px;
	border: 1px solid rgba(233, 228, 218, .3);
}

.filter-btn {
	padding: 12px 24px;
	border: none;
	background: transparent;
	border-radius: 50px;
	font-size: .95rem;
	font-weight: 500;
	color: #6a6a6a;
	cursor: pointer;
	transition: all .3s ease;
	position: relative;
}

.filter-btn:hover {
	color: #2a2a2a;
	background: rgba(255, 255, 255, .5);
}

.filter-btn.active {
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: #1a1a1a;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(191, 153, 88, .3);
}

.prestations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
	margin-bottom: 40px;
}

.prestation-card {
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 20px;
	padding: 32px 28px;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
}

.prestation-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
	transform: scaleX(0);
	transition: transform .3s ease;
}

.prestation-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
	border-color: var(--gold-500);
	background: #ffffff;
}

.prestation-card:hover::before {
	transform: scaleX(1);
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.card-header h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 1.8vw, 1.375rem);
	color: #1a1a1a;
	margin: 0;
	line-height: 1.3;
	flex: 1;
	padding-right: 16px;
}

.card-icon {
	font-size: 2rem;
	opacity: .8;
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.card-description {
	font-size: clamp(1rem, 1.5vw, 1.05rem);
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0 0 24px;
}

.card-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.detail-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.detail-label {
	font-weight: 600;
	color: var(--red-500);
	font-size: .9rem;
	flex-shrink: 0;
	min-width: 70px;
}

.detail-value {
	font-size: .9rem;
	color: #5a5a5a;
	line-height: 1.4;
}

.no-results {
	text-align: center;
	padding: 60px 20px;
}

.no-results-content {
	max-width: 400px;
	margin: 0 auto;
}

.no-results-icon {
	font-size: 3rem;
	display: block;
	margin-bottom: 16px;
	opacity: .6;
}

.no-results h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #1a1a1a;
	margin: 0 0 12px;
}

.no-results p {
	color: #6a6a6a;
	margin: 0;
	line-height: 1.5;
}

/* Animation pour les cartes filtrées */
.prestation-card.hidden {
	opacity: 0;
	transform: scale(0.8);
	pointer-events: none;
}

.prestation-card.visible {
	opacity: 1;
	transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
	.prestations-catalog {
		padding: 80px 0;
		margin: 60px 8px 0;
	}

	.catalog-header {
		margin-bottom: 48px;
	}

	.catalog-controls {
		gap: 20px;
		margin-bottom: 40px;
	}

	.search-bar {
		max-width: none;
	}

	.filter-tabs {
		flex-wrap: wrap;
		justify-content: center;
	}

	.filter-btn {
		padding: 10px 20px;
		font-size: .9rem;
	}

	.prestations-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.prestation-card {
		padding: 24px 20px;
	}

	.card-header {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.card-header h3 {
		padding-right: 0;
	}

	.card-icon {
		align-self: center;
	}

	.detail-item {
		flex-direction: column;
		gap: 4px;
	}

	.detail-label {
		min-width: auto;
	}
}

@media (max-width: 480px) {
	.prestations-catalog {
		padding: 60px 0;
		margin: 40px 4px 0;
	}

	.search-bar input {
		padding: 14px 16px 14px 44px;
	}

	.search-icon {
		left: 16px;
	}

	.filter-btn {
		padding: 8px 16px;
		font-size: .85rem;
	}

	.prestation-card {
		padding: 20px 16px;
	}
}

/* Focus visible for accessibility with red accent */
:where(a, button)[data-focus],
:where(a, button):focus-visible {
	outline: 2px solid var(--red-500);
	outline-offset: 3px;
	border-radius: 10px
}

.detail-value::before, .detail-label::before {
	display: none;
}

/* Locations Services Section */
.locations-services {
	padding: 120px 0;
	background: #ffffff;
	margin: 80px 0 0;
}

.locations-header {
	text-align: center;
	margin-bottom: 60px;
}

.locations-intro {
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: #5a5a5a;
	margin: 24px auto 0;
	max-width: 600px;
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-bottom: 60px;
}

.location-card {
	background: linear-gradient(135deg, rgba(247, 245, 239, .3) 0%, rgba(255, 255, 255, .9) 100%);
	border: 1px solid rgba(233, 228, 218, .5);
	border-radius: 20px;
	padding: 40px 32px;
	text-align: center;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
}

.location-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
	transform: scaleX(0);
	transition: transform .3s ease;
}

.location-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
	border-color: var(--gold-500);
	background: linear-gradient(135deg, rgba(247, 245, 239, .4) 0%, #ffffff 100%);
}

.location-card:hover::before {
	transform: scaleX(1);
}

.location-icon {
	font-size: 3rem;
	margin-bottom: 24px;
	color: var(--gold-600);
}

.location-icon i {
	color: var(--gold-600);
}

.location-icon img {
	width: 50%;
	height: 50%;
	margin:auto;
	object-fit: contain;
}

.location-content h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.375rem, 2vw, 1.5rem);
	color: #1a1a1a;
	margin: 0 0 8px;
}

.location-subtitle {
	font-weight: 600;
	color: var(--red-500);
	font-size: .95rem;
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.location-description {
	font-size: clamp(1rem, 1.5vw, 1.05rem);
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0 0 24px;
	text-align: left;
}

.location-details {
	text-align: left;
}

.detail-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: rgba(255, 255, 255, .6);
	padding: 16px;
	border-radius: 12px;
	border: 1px solid rgba(233, 228, 218, .3);
}

.detail-icon {
	font-size: 1.25rem;
	color: var(--red-500);
	flex-shrink: 0;
	margin-top: 2px;
}

.detail-icon i {
	color: var(--red-500);
}

.detail-content {
	flex: 1;
}

.detail-content .detail-label {
	font-weight: 600;
	color: #2a2a2a;
	font-size: .9rem;
	margin-right: 8px;
}

.detail-content .detail-text {
	color: #5a5a5a;
	font-size: .9rem;
	line-height: 1.4;
}

/* Practical Info */
.practical-info {
	margin-top: 60px;
}

.info-card {
	background: linear-gradient(135deg, rgba(191, 153, 88, .08) 0%, rgba(247, 245, 239, .4) 100%);
	border: 1px solid rgba(233, 228, 218, .6);
	border-radius: 24px;
	padding: 48px 40px;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.info-title {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.5rem, 2.2vw, 1.75rem);
	color: #1a1a1a;
	margin: 0 0 32px;
	position: relative;
	display: inline-block;
	padding-bottom: 16px;
}

.info-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
}

.info-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: left;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: rgba(255, 255, 255, .7);
	border-radius: 16px;
	border: 1px solid rgba(233, 228, 218, .4);
	transition: all .3s ease;
}

.info-item:hover {
	background: rgba(255, 255, 255, .9);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.info-icon {
	font-size: 1.5rem;
	color: var(--gold-500);
	flex-shrink: 0;
	margin-top: 2px;
}

.info-icon i {
	color: var(--gold-500);
}

.info-item p {
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.05rem);
	line-height: 1.6;
	color: #4a4a4a;
}

/* Special styling for nature care card */
.nature-care {
	background: linear-gradient(135deg, rgba(144, 238, 144, .1) 0%, rgba(255, 255, 255, .9) 100%);
}

.nature-care:hover {
	background: linear-gradient(135deg, rgba(144, 238, 144, .15) 0%, #ffffff 100%);
}

/* Responsive */
@media (max-width: 768px) {
	.locations-services {
		padding: 80px 0;
		margin: 60px 0 0;
	}

	.locations-header {
		margin-bottom: 48px;
	}

	.locations-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 48px;
	}

	.location-card {
		padding: 32px 24px;
	}

	.location-icon {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}

	.detail-row {
		padding: 14px;
	}

	.info-card {
		padding: 32px 24px;
		margin: 0 16px;
	}

	.info-list {
		gap: 20px;
	}

	.info-item {
		padding: 16px;
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.info-icon {
		align-self: center;
	}
}

@media (max-width: 480px) {
	.locations-services {
		padding: 60px 0;
		margin: 40px 0 0;
	}

	.location-card {
		padding: 24px 20px;
	}

	.info-card {
		padding: 24px 16px;
		margin: 0 8px;
	}

	.info-item {
		padding: 14px;
	}
}

/* Pricing Section */
.pricing {
	padding: 120px 0;
	margin: 80px 16px 0;
}

.pricing-header {
	text-align: center;
	margin-bottom: 60px;
}

.pricing-intro {
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: #5a5a5a;
	margin: 24px auto 0;
	max-width: 700px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-bottom: 60px;
}

.pricing-card {
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 20px;
	padding: 40px 32px;
	text-align: center;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--gold-500), var(--red-500));
	transform: scaleX(0);
	transition: transform .3s ease;
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
	border-color: var(--gold-500);
	background: #ffffff;
}

.pricing-card:hover::before {
	transform: scaleX(1);
}

.card-header {
	margin-bottom: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.card-title-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.card-icon {
	font-size: 1.5rem;
	margin-bottom: 20px;
	opacity: .8;
	color: var(--gold-500);
	background: rgba(191, 153, 88, .1);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.card-icon i {
	font-size: 1.5rem;
}

.card-header h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.375rem, 2vw, 1.5rem);
	color: #1a1a1a;
	margin: 0 0 12px;
}

.card-subtitle {
	color: var(--red-500);
	font-weight: 500;
	font-size: .85rem;
	margin: 0;
	opacity: .9;
	padding: 4px 12px;
	background: rgba(178, 34, 34, .08);
	border-radius: 12px;
	display: inline-block;
	border: 1px solid rgba(178, 34, 34, .15);
}

/* Price styling for single price (bilan) */
.price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-bottom: 24px;
}

.price-amount {
	font-family: "Playfair Display", serif;
	font-weight: 700;
	font-size: clamp(2.5rem, 4vw, 3rem);
	color: var(--red-500);
	line-height: 1;
}

.price-currency {
	font-weight: 600;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	color: #4a4a4a;
}

/* Pricing options for multiple prices */
.pricing-options {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.price-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: rgba(247, 245, 239, .3);
	border-radius: 12px;
	border: 1px solid rgba(233, 228, 218, .3);
	transition: all .3s ease;
}

.price-option:hover {
	background: rgba(247, 245, 239, .5);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.option-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.option-label {
	font-weight: 600;
	color: #1a1a1a;
	font-size: 1.05rem;
}

.option-duration {
	color: #6a6a6a;
	font-size: .9rem;
	font-style: italic;
}

.price-option .price {
	margin: 0;
}

.price-option .price-amount {
	font-size: 1.75rem;
}

.price-option .price-currency {
	font-size: 1.125rem;
}

/* Card details for bilan */
.card-details {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: left;
}

.pricing-card .detail-text::before {
	display:none;
}

.detail-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(247, 245, 239, .3);
	border-radius: 8px;
	border: 1px solid rgba(233, 228, 218, .3);
}

.detail-icon {
	font-size: 1.125rem;
	opacity: .7;
	flex-shrink: 0;
	color: var(--red-500);
	width: 20px;
	text-align: center;
}

.detail-text {
	color: #4a4a4a;
	font-size: .95rem;
	line-height: 1.4;
}

/* Pricing advantages */
.pricing-advantages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 60px;
}

.advantage-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 32px 28px;
	background: linear-gradient(135deg, rgba(191, 153, 88, .08) 0%, rgba(247, 245, 239, .4) 100%);
	border: 1px solid rgba(233, 228, 218, .5);
	border-radius: 16px;
	transition: all .3s ease;
}

.advantage-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
	background: linear-gradient(135deg, rgba(191, 153, 88, .12) 0%, rgba(247, 245, 239, .6) 100%);
}

.advantage-icon {
	font-size: 1.25rem;
	opacity: .8;
	flex-shrink: 0;
	color: var(--gold-500);
	background: rgba(191, 153, 88, .1);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantage-icon i {
	font-size: 1.25rem;
}

.advantage-content h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 1.8vw, 1.375rem);
	color: #1a1a1a;
	margin: 0 0 8px;
}

.advantage-content p {
	color: #4a4a4a;
	font-size: clamp(1rem, 1.4vw, 1.05rem);
	line-height: 1.5;
	margin: 0;
}

/* Special styling for specific cards */
.bilan-card {
	background: linear-gradient(135deg, rgba(255, 215, 0, .05) 0%, rgba(255, 255, 255, .9) 100%);
}

.bilan-card:hover {
	background: linear-gradient(135deg, rgba(255, 215, 0, .1) 0%, #ffffff 100%);
}

.cabinet-card {
	background: linear-gradient(135deg, rgba(135, 206, 235, .05) 0%, rgba(255, 255, 255, .9) 100%);
}

.cabinet-card:hover {
	background: linear-gradient(135deg, rgba(135, 206, 235, .1) 0%, #ffffff 100%);
}

.home-card {
	background: linear-gradient(135deg, rgba(255, 182, 193, .05) 0%, rgba(255, 255, 255, .9) 100%);
}

.home-card:hover {
	background: linear-gradient(135deg, rgba(255, 182, 193, .1) 0%, #ffffff 100%);
}

/* Responsive */
@media (max-width: 768px) {
	.pricing {
		padding: 80px 0;
		margin: 60px 8px 0;
	}

	.pricing-header {
		margin-bottom: 48px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 48px;
	}

	.pricing-card {
		padding: 32px 24px;
	}

	.card-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 16px;
	}
	
	.card-icon i {
		font-size: 1.25rem;
	}

	.price-option {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	.option-info {
		align-items: center;
	}

	.advantage-card {
		flex-direction: column;
		gap: 16px;
		text-align: center;
		padding: 24px 20px;
	}

	.advantage-icon {
		width: 40px;
		height: 40px;
	}
	
	.advantage-icon i {
		font-size: 1rem;
	}

	.pricing-advantages {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 48px;
	}
}

@media (max-width: 480px) {
	.pricing {
		padding: 60px 0;
		margin: 40px 4px 0;
	}

	.pricing-card {
		padding: 24px 20px;
	}

	.advantage-card {
		padding: 20px 16px;
	}

	.price-option {
		padding: 16px;
	}
}

/* Booking Section */
.booking-section {
	padding: 120px 0;
	background: #ffffff;
	margin: 80px 0 0;
}

.booking-header {
	text-align: center;
	margin-bottom: 60px;
}

.booking-intro {
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: #5a5a5a;
	margin: 24px auto 0;
	max-width: 600px;
}

.booking-simulator {
	max-width: 900px;
	margin: 0 auto 60px;
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 20px;
	padding: 48px 40px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

/* Step Indicator */
.step-indicator {
	display: flex;
	justify-content: center;
	margin-bottom: 48px;
	position: relative;
}

.step-indicator::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 70%;
	height: 2px;
	background: rgba(233, 228, 218, .5);
	z-index: 1;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 2;
	flex: 1;
	max-width: 120px;
}

.step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(233, 228, 218, .3);
	color: #6a6a6a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: .9rem;
	transition: all .3s ease;
}

.step.active .step-number {
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: #1a1a1a;
	box-shadow: 0 4px 12px rgba(191, 153, 88, .3);
}

.step-label {
	font-size: .85rem;
	color: #6a6a6a;
	font-weight: 500;
	text-align: center;
	transition: color .3s ease;
}

.step.active .step-label {
	color: #2a2a2a;
	font-weight: 600;
}

/* Step Content */
.booking-content {
	margin-bottom: 40px;
}

.step-content {
	display: none;
}

.step-content.active {
	display: block;
}

.step-content h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 1.8vw, 1.375rem);
	color: #1a1a1a;
	margin: 0 0 32px;
	text-align: center;
}

/* Session Types */
.session-types {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.session-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	border: 2px solid rgba(233, 228, 218, .3);
	border-radius: 12px;
	background: rgba(255, 255, 255, .8);
	cursor: pointer;
	transition: all .3s ease;
}

.session-card:hover {
	border-color: var(--gold-500);
	background: rgba(247, 245, 239, .3);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.session-card.selected {
	border-color: var(--gold-500);
	background: rgba(191, 153, 88, .1);
	box-shadow: 0 4px 15px rgba(191, 153, 88, .2);
}

.session-icon {
	width: 50px;
	height: 50px;
	background: rgba(191, 153, 88, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-500);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.session-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.session-info h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin: 0 0 4px;
}

.session-info p {
	font-size: .9rem;
	color: #5a5a5a;
	margin: 0 0 8px;
	line-height: 1.4;
}

.session-price {
	font-weight: 600;
	color: var(--red-500);
	font-size: 1rem;
}

/* Location Confirmation */
.location-confirmation {
	text-align: center;
}

.selected-session {
	margin-bottom: 32px;
	padding: 16px 24px;
	background: rgba(191, 153, 88, .08);
	border-radius: 12px;
	display: inline-block;
}

.selected-label {
	color: #6a6a6a;
	font-size: .9rem;
	margin-right: 8px;
}

.selected-value {
	font-weight: 600;
	color: #1a1a1a;
	font-size: 1rem;
}

.location-card-booking {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	border: 2px solid var(--gold-500);
	border-radius: 12px;
	background: rgba(191, 153, 88, .05);
	max-width: 400px;
	margin: 0 auto;
}

.location-card-booking i {
	font-size: 1.5rem;
	color: var(--gold-500);
}

.location-info-booking h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin: 0 0 4px;
}

.location-info-booking p {
	font-size: .9rem;
	color: #5a5a5a;
	margin: 0;
}

/* Calendar */
.calendar-simulation {
	max-width: 600px;
	margin: 0 auto;
}

.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	padding: 0 16px;
}

.calendar-nav {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 8px;
	background: rgba(255, 255, 255, .8);
	color: #6a6a6a;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s ease;
}

.calendar-nav:hover {
	border-color: var(--gold-500);
	color: var(--gold-500);
	background: rgba(191, 153, 88, .05);
}

.calendar-month {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: #1a1a1a;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.calendar-day {
	text-align: center;
}

.day-header {
	font-weight: 600;
	color: #1a1a1a;
	font-size: .9rem;
	margin-bottom: 12px;
	padding: 8px;
	background: rgba(247, 245, 239, .4);
	border-radius: 8px;
}

.time-slots {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.time-slot {
	padding: 8px 12px;
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 6px;
	background: rgba(255, 255, 255, .9);
	color: #4a4a4a;
	font-size: .85rem;
	cursor: pointer;
	transition: all .3s ease;
}

.time-slot:hover {
	border-color: var(--gold-500);
	background: rgba(191, 153, 88, .1);
	color: #2a2a2a;
}

.time-slot.selected {
	background: var(--gold-500);
	border-color: var(--gold-600);
	color: #1a1a1a;
	font-weight: 600;
}

.time-slot.unavailable {
	background: rgba(233, 228, 218, .2);
	color: #9a9a9a;
	cursor: not-allowed;
	text-decoration: line-through;
}

.time-slot.unavailable:hover {
	border-color: rgba(233, 228, 218, .4);
	background: rgba(233, 228, 218, .2);
	color: #9a9a9a;
}

/* Booking Actions */
.booking-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
}

.btn-prev,
.btn-next,
.btn-book {
	padding: 14px 24px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: .95rem;
	cursor: pointer;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.btn-prev {
	background: rgba(233, 228, 218, .3);
	color: #6a6a6a;
}

.btn-prev:hover {
	background: rgba(233, 228, 218, .5);
	color: #4a4a4a;
}

.btn-next,
.btn-book {
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: #1a1a1a;
	box-shadow: 0 4px 12px rgba(191, 153, 88, .3);
}

.btn-next:hover,
.btn-book:hover {
	background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(191, 153, 88, .4);
}

/* Booking Info */
.booking-info {
	margin-top: 60px;
}

.info-card-booking {
	max-width: 600px;
	margin: 0 auto;
	padding: 24px 28px;
	background: rgba(135, 206, 235, .05);
	border: 1px solid rgba(135, 206, 235, .2);
	border-radius: 12px;
}

.info-content {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.info-content i {
	font-size: 1.25rem;
	color: #4682b4;
	margin-top: 2px;
	flex-shrink: 0;
}

.info-text h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin: 0 0 6px;
}

.info-text p {
	font-size: .95rem;
	color: #4a4a4a;
	margin: 0;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
	.booking-section {
		padding: 80px 0;
		margin: 60px 0 0;
	}

	.booking-simulator {
		padding: 32px 24px;
		margin: 0 16px 48px;
	}

	.step-indicator::before {
		width: 60%;
	}

	.step {
		max-width: 80px;
	}

	.step-label {
		font-size: .75rem;
	}

	.session-types {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.session-card {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.calendar-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.booking-actions {
		flex-direction: column;
		gap: 16px;
	}

	.btn-prev,
	.btn-next,
	.btn-book {
		width: 100%;
		justify-content: center;
	}

	.info-card-booking {
		margin: 0 16px;
		padding: 20px;
	}

	.info-content {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.booking-simulator {
		padding: 24px 16px;
	}

	.step-number {
		width: 32px;
		height: 32px;
		font-size: .8rem;
	}

	.step-label {
		font-size: .7rem;
	}

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

/* Contact Section */
.contact-section {
	padding: 120px 0;
	background: #ffffff;
	margin: 80px 0 0;
}

.contact-header {
	text-align: center;
	margin-bottom: 60px;
}

.contact-intro {
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	color: #5a5a5a;
	margin: 24px auto 0;
	max-width: 700px;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 20px;
	padding: 40px 36px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.form-header {
	text-align: center;
	margin-bottom: 32px;
}

.form-header h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.375rem, 2vw, 1.5rem);
	color: #1a1a1a;
	margin: 0 0 8px;
}

.form-header p {
	color: #6a6a6a;
	font-size: .95rem;
	margin: 0;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-weight: 600;
	color: #2a2a2a;
	font-size: .9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 14px 16px;
	border: 2px solid rgba(233, 228, 218, .4);
	border-radius: 8px;
	font-size: .95rem;
	background: rgba(255, 255, 255, .9);
	transition: all .3s ease;
	outline: none;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--gold-500);
	box-shadow: 0 0 0 3px rgba(191, 153, 88, .1);
	background: #ffffff;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.5;
}

.form-group select {
	cursor: pointer;
}

/* Checkbox styling */
.form-consent {
	margin-top: 8px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: .9rem;
	line-height: 1.4;
	color: #4a4a4a;
}

.checkbox-label input[type="checkbox"] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(233, 228, 218, .6);
	border-radius: 4px;
	background: rgba(255, 255, 255, .9);
	flex-shrink: 0;
	margin-top: 2px;
	position: relative;
	transition: all .3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
	background: var(--gold-500);
	border-color: var(--gold-600);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid #1a1a1a;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.btn-submit {
	padding: 16px 24px;
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	color: #1a1a1a;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 8px;
	box-shadow: 0 4px 12px rgba(191, 153, 88, .3);
}

.btn-submit:hover {
	background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(191, 153, 88, .4);
}

/* Contact Info */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.info-header {
	text-align: center;
}

.info-header h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.375rem, 2vw, 1.5rem);
	color: #1a1a1a;
	margin: 0 0 8px;
}

.info-header p {
	color: #6a6a6a;
	font-size: .95rem;
	margin: 0;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 24px;
	background: rgba(247, 245, 239, .3);
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 16px;
	transition: all .3s ease;
}

.contact-method:hover {
	background: rgba(247, 245, 239, .5);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.method-icon {
	width: 50px;
	height: 50px;
	background: rgba(191, 153, 88, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-500);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.method-info h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin: 0 0 6px;
}

.method-info a {
	color: var(--red-500);
	text-decoration: none;
	font-weight: 500;
	transition: color .3s ease;
}

.method-info a:hover {
	color: #1a1a1a;
	text-decoration: underline;
}

.method-info p {
	font-size: .9rem;
	color: #5a5a5a;
	margin: 4px 0 0;
	line-height: 1.4;
}

/* Contact Note */
.contact-note {
	background: rgba(135, 206, 235, .05);
	border: 1px solid rgba(135, 206, 235, .2);
	border-radius: 16px;
	padding: 24px;
}

.note-content {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.note-content i {
	font-size: 1.25rem;
	color: #ff69b4;
	margin-top: 2px;
	flex-shrink: 0;
}

.note-text h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: 1.1rem;
	color: #1a1a1a;
	margin: 0 0 6px;
}

.note-text p {
	font-size: .95rem;
	color: #4a4a4a;
	margin: 0;
	line-height: 1.5;
	font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
	.contact-content {
		gap: 48px;
		max-width: 800px;
	}
}

@media (max-width: 768px) {
	.contact-section {
		padding: 80px 0;
		margin: 60px 0 0;
	}

	.contact-section .section-inner {
		padding: 0;
	}

	.contact-header {
		margin-bottom: 48px;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
		margin: 0 20px;
	}

	.contact-form-container {
		padding: 32px 28px;
		order: 1;
	}

	.contact-info {
		order: 2;
	}

	.contact-form {
		gap: 20px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 12px 16px;
		font-size: .9rem;
	}

	.btn-submit {
		padding: 14px 20px;
		font-size: .95rem;
	}

	.contact-method {
		padding: 20px;
		flex-direction: row;
		text-align: left;
		align-items: center;
	}

	.method-icon {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}

	.note-content {
		flex-direction: row;
		text-align: left;
	}
}

@media (max-width: 600px) {
	.contact-content {
		margin: 0 16px;
	}

	.contact-form-container {
		padding: 28px 24px;
		border-radius: 16px;
	}

	.form-header h3 {
		font-size: 1.25rem;
	}

	.contact-form {
		gap: 18px;
	}

	.form-group {
		gap: 6px;
	}

	.form-group label {
		font-size: .85rem;
	}

	.contact-method {
		padding: 18px;
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.method-icon {
		align-self: center;
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.method-info h4 {
		margin-bottom: 4px;
	}

	.note-content {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.contact-note {
		padding: 20px 18px;
	}
}

@media (max-width: 480px) {
	.contact-section {
		padding: 60px 0;
		margin: 40px 0 0;
	}

	.contact-content {
		margin: 0 12px;
	}

	.contact-form-container {
		padding: 24px 20px;
		border-radius: 12px;
	}

	.form-header {
		margin-bottom: 24px;
	}

	.form-header h3 {
		font-size: 1.2rem;
		margin-bottom: 6px;
	}

	.form-header p {
		font-size: .9rem;
	}

	.contact-form {
		gap: 16px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 12px 14px;
		font-size: .9rem;
		border-radius: 6px;
	}

	.form-group textarea {
		min-height: 100px;
	}

	.checkbox-label {
		font-size: .85rem;
		gap: 10px;
	}

	.checkmark {
		width: 18px;
		height: 18px;
	}

	.btn-submit {
		padding: 14px 20px;
		font-size: .9rem;
		border-radius: 6px;
	}

	.contact-method {
		padding: 16px;
		border-radius: 12px;
	}

	.method-icon {
		width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}

	.method-info h4 {
		font-size: 1rem;
	}

	.method-info p {
		font-size: .85rem;
	}

	.contact-note {
		padding: 18px 16px;
		border-radius: 12px;
	}

	.note-text h4 {
		font-size: 1rem;
	}

	.note-text p {
		font-size: .9rem;
	}
}

@media (max-width: 360px) {
	.contact-content {
		margin: 0 8px;
	}

	.contact-form-container {
		padding: 20px 16px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 10px 12px;
		font-size: .85rem;
	}

	.btn-submit {
		padding: 12px 16px;
		font-size: .85rem;
	}

	.contact-method {
		padding: 14px;
	}

	.method-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.contact-note {
		padding: 16px 14px;
	}
}

/* Animations pour le menu mobile */
@keyframes slideInFromTop {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes rotateIn {
	from {
		opacity: 0;
		transform: rotate(90deg) scale(0.8);
	}
	to {
		opacity: 1;
		transform: rotate(0deg) scale(1);
	}
}

/* Mentions légales */
.legal-section {
	padding: 80px 0;
	margin: 60px 0 0;
}

.legal-header {
	text-align: center;
	margin-bottom: 60px;
}

.legal-intro {
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #666;
}

.legal-content {
	display: grid;
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

.legal-card {
	background: #ffffff;
	border: 1px solid rgba(233, 228, 218, 0.8);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.legal-card:hover {
	border-color: var(--gold-500);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.legal-card .card-header {
	background: linear-gradient(135deg, rgba(211, 179, 122, 0.08), rgba(197, 59, 54, 0.05));
	padding: 24px 32px;
	border-bottom: 1px solid rgba(233, 228, 218, 0.6);
}

.legal-card .card-header h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.legal-card .card-header i {
	color: var(--gold-500);
	font-size: 1.1rem;
}

.legal-card .card-content {
	padding: 32px;
}

.info-grid {
	display: grid;
	gap: 20px;
}

.info-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 16px;
	align-items: start;
}

.info-label {
	font-weight: 600;
	color: #1a1a1a;
	font-size: 0.95rem;
}

.info-value {
	color: #555;
	line-height: 1.5;
}

.info-value a {
	color: var(--gold-600);
	text-decoration: none;
	transition: color 0.3s ease;
}

.info-value a:hover {
	color: var(--red-500);
}

.legal-card p {
	margin: 0 0 16px 0;
	line-height: 1.6;
	color: #555;
}

.legal-card p:last-child {
	margin-bottom: 0;
}

.legal-card strong {
	color: #1a1a1a;
	font-weight: 600;
}

.legal-footer {
	margin-top: 48px;
	text-align: center;
	padding-top: 32px;
	border-top: 1px solid rgba(233, 228, 218, 0.6);
}

.update-info p {
	color: #888;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
}

.update-info i {
	color: var(--gold-500);
}

/* Responsive mentions légales */
@media (max-width: 768px) {
	.legal-section {
		padding: 60px 0;
		margin: 40px 0 0;
	}

	.legal-header {
		margin-bottom: 48px;
	}

	.legal-intro {
		font-size: 1rem;
	}

	.legal-content {
		gap: 24px;
		margin: 0 16px;
	}

	.legal-card .card-header {
		padding: 20px 24px;
	}

	.legal-card .card-header h3 {
		font-size: 1.2rem;
	}

	.legal-card .card-content {
		padding: 24px;
	}

	.info-item {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.info-label {
		font-size: 0.9rem;
	}

	.legal-footer {
		margin-top: 40px;
		padding-top: 24px;
	}
}

@media (max-width: 480px) {
	.legal-content {
		margin: 0 12px;
	}

	.legal-card .card-header {
		padding: 16px 20px;
	}

	.legal-card .card-header h3 {
		font-size: 1.1rem;
		gap: 8px;
	}

	.legal-card .card-content {
		padding: 20px;
	}

	.legal-card p {
		margin-bottom: 14px;
	}
}

/* Booking Flow Styles */
.booking-flow {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.booking-steps-simple {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.step-simple {
	text-align: center;
	padding: 32px 24px;
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 20px;
	transition: all .3s ease;
	position: relative;
}

.step-simple:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
	border-color: var(--gold-500);
}

.step-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a;
	font-size: 2rem;
	box-shadow: 0 8px 25px rgba(191, 153, 88, .3);
}

.step-simple h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 1.8vw, 1.375rem);
	color: #1a1a1a;
	margin: 0 0 16px;
}

.step-simple p {
	font-size: clamp(.95rem, 1.4vw, 1.05rem);
	color: #4a4a4a;
	margin: 0;
	line-height: 1.5;
}

/* Booking CTA Section */
.booking-cta-section {
	text-align: center;
}

.booking-highlight {
	background: linear-gradient(135deg, rgba(191, 153, 88, .08) 0%, rgba(247, 245, 239, .4) 100%);
	border: 1px solid rgba(233, 228, 218, .6);
	border-radius: 20px;
	padding: 40px 32px;
	margin-bottom: 48px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.highlight-content {
	display: flex;
	align-items: center;
	gap: 24px;
	text-align: left;
}

.highlight-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: rgba(191, 153, 88, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-500);
	font-size: 1.5rem;
}

.highlight-text h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 1.8vw, 1.375rem);
	color: #1a1a1a;
	margin: 0 0 8px;
}

.highlight-text p {
	font-size: clamp(.95rem, 1.4vw, 1.05rem);
	color: #4a4a4a;
	margin: 0;
	line-height: 1.5;
}

/* Booking Buttons */
.booking-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 48px;
}

.btn-booking-primary {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 20px 40px;
	background: linear-gradient(135deg, var(--red-500), #d84339);
	color: #ffffff;
	text-decoration: none;
	border-radius: 50px;
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.125rem, 1.8vw, 1.25rem);
	box-shadow: 0 8px 30px rgba(197, 59, 54, .4);
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
}

.btn-booking-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(197, 59, 54, .5);
	background: linear-gradient(135deg, #d84339, var(--red-500));
}

.btn-booking-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
	transition: left .5s;
}

.btn-booking-primary:hover::before {
	left: 100%;
}

.btn-booking-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: transparent;
	color: var(--gold-600);
	text-decoration: none;
	border: 2px solid var(--gold-500);
	border-radius: 50px;
	font-family: "Playfair Display", serif;
	font-weight: 500;
	font-size: 1rem;
	transition: all .3s ease;
}

.btn-booking-secondary:hover {
	background: var(--gold-500);
	color: #1a1a1a;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(191, 153, 88, .3);
}

/* Booking Info Cards */
.booking-info-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}

.info-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 28px;
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(233, 228, 218, .4);
	border-radius: 20px;
	transition: all .3s ease;
	min-height: 180px;
	justify-content: flex-start;
}

.info-card:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-6px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, .1);
	border-color: var(--gold-500);
}

.info-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, rgba(191, 153, 88, .1), rgba(191, 153, 88, .05));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-500);
	font-size: 1.5rem;
	box-shadow: 0 4px 15px rgba(191, 153, 88, .2);
}

.info-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.info-content h4 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.125rem, 1.6vw, 1.25rem);
	color: #1a1a1a;
	margin: 0 0 12px;
	line-height: 1.3;
}

.info-content p {
	font-size: clamp(.95rem, 1.4vw, 1rem);
	color: #4a4a4a;
	margin: 0;
	line-height: 1.5;
	font-weight: 400;
}

/* Booking Help */
.booking-help {
	margin-top: 60px;
}

.help-card {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 40px 32px;
	background: linear-gradient(135deg, rgba(135, 206, 235, .05) 0%, rgba(255, 255, 255, .9) 100%);
	border: 1px solid rgba(135, 206, 235, .2);
	border-radius: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.help-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: rgba(135, 206, 235, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4682b4;
	font-size: 1.5rem;
}

.help-content h3 {
	font-family: "Playfair Display", serif;
	font-weight: 600;
	font-size: clamp(1.25rem, 1.8vw, 1.375rem);
	color: #1a1a1a;
	margin: 0 0 16px;
}

.help-content p {
	font-size: clamp(1rem, 1.5vw, 1.05rem);
	color: #4a4a4a;
	margin: 0 0 24px;
	line-height: 1.6;
}

.help-actions {
	display: flex;
	gap: 16px;
}

.help-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: transparent;
	color: #4682b4;
	text-decoration: none;
	border: 1px solid rgba(70, 130, 180, .3);
	border-radius: 8px;
	font-size: .95rem;
	font-weight: 500;
	transition: all .3s ease;
}

.help-link:hover {
	background: rgba(70, 130, 180, .1);
	border-color: #4682b4;
	transform: translateY(-2px);
}

/* Booking Flow Responsive */
@media (max-width: 768px) {
	.booking-flow {
		gap: 48px;
	}

	.booking-steps-simple {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.step-simple {
		padding: 24px 20px;
	}

	.step-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: 20px;
	}

	.booking-highlight {
		padding: 32px 24px;
		margin-bottom: 40px;
	}

	.highlight-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.booking-buttons {
		margin-bottom: 40px;
	}

	.btn-booking-primary {
		padding: 18px 32px;
		font-size: 1.125rem;
	}

	.booking-info-cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.help-card {
		flex-direction: column;
		text-align: center;
		gap: 20px;
		padding: 32px 24px;
	}

	.help-actions {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.booking-highlight {
		padding: 24px 20px;
	}

	.btn-booking-primary {
		padding: 16px 28px;
		font-size: 1rem;
	}

	.help-card {
		padding: 24px 20px;
	}
}

@media screen and (max-width:768px) {
	.hero h1 {
		font-size: clamp(2rem, 6vw, 3rem) !important;
	}
}