:root 
{
	--sage: #b8c9bb;
	--sage-dark: #7c9480;
	--peach: #e7a067;
	--peach-dark: #d58446;
	--cream: #fbf7f2;
	--text: #544b45;
	--muted: #7e746c;
	--card: rgba(255,255,255,0.84);
	--shadow: 0 10px 30px rgba(110, 94, 80, 0.12);
	--radius-xl: 26px;
	--radius-lg: 20px;
	--radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body 
{
	margin: 0;
	width:100%;
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: linear-gradient(180deg, #f8f4ef 0%, #f2eee8 100%);
	line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container 
{
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header 
{
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(12px);
	background: rgba(255,255,255,0.84);
	border-bottom: 1px solid rgba(184, 201, 187, 0.25);
}

.header-inner 
{
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand small 
{
	display: block;
	color: var(--muted);
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	margin-bottom: -4px;
}

.brand strong 
{
	display: block;
	font-family: 'Great Vibes', cursive;
	font-size: clamp(2rem, 3vw, 3rem);
	color: #6a7f70;
	font-weight: 400;
	line-height: 1;
}

nav 
{
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: center;
}

nav a 
{
	color: var(--text);
	font-weight: 500;
	transition: color 0.2s ease;
}

nav a:hover { color: var(--sage-dark); }

.btn 
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 28px;
	border-radius: 18px;
	border: 0;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 10px 20px rgba(229, 160, 103, 0.22);
}

.btn:hover 
{
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(229, 160, 103, 0.26);
}

.btn-primary 
{
	color: #fff;
	background: linear-gradient(180deg, #ecab75 0%, #db8c52 100%);
}

.hero 
{
	position: relative;
	overflow: hidden;
	padding: 72px 0 48px;
	background:
        linear-gradient(90deg, rgba(251,247,242,0.95) 0%, rgba(251,247,242,0.85) 45%, rgba(251,247,242,0.25) 100%),
        url('https://creches-alexandra.fr/images/fondc2.png?auto=format&fit=crop&w=1600&q=80') center right / cover no-repeat;
}

.hero::after 
{
	content: "";
	position: absolute;
	inset: auto -15% -120px -15%;
	height: 220px;
	background: radial-gradient(circle at center, rgba(184,201,187,0.30), rgba(184,201,187,0) 70%);
	pointer-events: none;
}

.hero-grid 
{
	position: relative;
	z-index: 1;
	min-height: 620px;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 28px;
}

.hero-copy 
{
	max-width: 640px;
	padding: 36px 0;
}

.hero-title-script 
{
	font-family: 'Great Vibes', cursive;
	font-size: clamp(3rem, 6vw, 5.6rem);
	line-height: 1;
	color: #6a7f70;
	margin: 0 0 22px;
	font-weight: 400;
}

.hero h1 
{
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.25rem, 4vw, 4.25rem);
	line-height: 1.02;
	font-weight: 500;
	color: #5b5048;
}

.hero p 
{
	font-size: 1.2rem;
	color: var(--muted);
	max-width: 560px;
	margin: 22px 0 30px;
}

.hero-visual 
{
	display: flex;
	justify-content: center;
	align-items: end;
	min-height: 560px;
}

.hero-visual .photo-card 
{
	width: min(520px, 100%);
	border-radius: 36px;
	overflow: hidden;
	background: rgba(255,255,255,0.3);
	box-shadow: var(--shadow);
	border: 1px solid rgba(255,255,255,0.4);
}

.hero-visual img 
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.floating-features 
{
	margin-top: -22px;
	position: relative;
	z-index: 2;
}

.feature-strip 
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	background: rgba(255,255,255,0.82);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(184, 201, 187, 0.24);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	padding: 20px;
}

.mini-card 
{
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 8px;
}

.icon-circle 
{
	width: 62px;
	height: 62px;
	border-radius: 50%;
	flex: 0 0 62px;
	display: grid;
	place-items: center;
	font-size: 1.5rem;
	background: linear-gradient(180deg, rgba(231,160,103,0.26), rgba(184,201,187,0.32));
}

.mini-card h3 
{
	margin: 2px 0 4px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	line-height: 1;
	font-weight: 500;
}

.mini-card p 
{
	margin: 0;
	color: var(--muted);
	font-size: 0.96rem;
}

#micro-creche
{
	display:block;
	margin:auto;
	width:80%;
}

section 
{
	padding: 72px 0;
}

.section-title-script 
{
	font-family: 'Great Vibes', cursive;
	font-size: clamp(2.5rem, 5vw, 4.2rem);
	text-align: center;
	color: #6b7f70;
	font-weight: 400;
	margin: 0;
}

.section-subtitle 
{
	text-align: center;
	color: var(--muted);
	max-width: 760px;
	margin: 10px auto 0;
	font-size: 1.1rem;
}

.values-grid 
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 36px;
}

.value-card 
{
	background: var(--card);
	border: 1px solid rgba(184, 201, 187, 0.22);
	border-radius: 22px;
	box-shadow: var(--shadow);
	padding: 24px 18px;
	text-align: center;
}

.value-card .icon-circle 
{
	margin: 0 auto 16px;
	width: 78px;
	height: 78px;
	font-size: 2rem;
}

.value-card h3 
{
	margin: 0;
	font-size: 1.35rem;
	font-weight: 600;
}

.practical 
{
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(184,201,187,0.25), rgba(184,201,187,0.18));
}

.practical::before,
.practical::after 
{
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	filter: blur(3px);
	pointer-events: none;
}

.practical::before 
{
	width: 340px;
	height: 340px;
	top: -120px;
	left: -120px;
}

.practical::after 
{
	width: 440px;
	height: 440px;
	bottom: -180px;
	right: -100px;
}

.practical-wrap 
{
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 30px;
	align-items: center;
}

.practical-box 
{
	background: rgba(255,255,255,0.86);
	border-radius: 28px;
	box-shadow: var(--shadow);
	padding: 30px;
	border: 1px solid rgba(184, 201, 187, 0.24);
}

.practical-label 
{
	display: inline-block;
	background: var(--sage);
	color: #fff;
	padding: 14px 28px;
	border-radius: 16px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 2rem;
	margin-bottom: 22px;
	box-shadow: 0 8px 18px rgba(124, 148, 128, 0.25);
}

.practical-grid 
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.practical-item 
{
	background: #fffdfb;
	border-radius: 20px;
	padding: 20px 16px;
	text-align: center;
	border: 1px solid rgba(184, 201, 187, 0.18);
	min-height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.practical-item h3 
{
	margin: 0 0 12px;
	font-size: 1.25rem;
	font-weight: 600;
}

.practical-item p 
{
	margin: 0;
	color: var(--muted);
	font-size: 0.98rem;
}

.quote-box 
{
	padding: 30px;
	background: rgba(255,255,255,0.64);
	border: 1px solid rgba(255,255,255,0.65);
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.quote-box blockquote 
{
	margin: 0 0 14px;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.08;
	color: #5c534d;
}

.quote-box cite 
{
	color: var(--muted);
	font-style: normal;
	font-weight: 600;
}

.cta {
	padding: 84px 0 110px;
	text-align: center;
	background:
		radial-gradient(circle at top, rgba(184,201,187,0.48), rgba(184,201,187,0.82)),
		linear-gradient(180deg, rgba(184,201,187,0.9), rgba(166,188,169,0.96));
	color: #fff;
	position: relative;
	overflow: hidden;
}

.cta::before,
.cta::after {
	content: "";
	position: absolute;
	width: 160%;
	height: 160px;
	left: -30%;
	background: #f7f2ec;
	border-radius: 50%;
}

.cta::before { top: -110px; }
.cta::after { bottom: -140px; }

.cta .container { position: relative; z-index: 1; }

.cta h2 {
	margin: 0 0 26px;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.25rem, 4.6vw, 4rem);
	font-weight: 500;
	color: #fffdfb;
}

.site-footer {
	padding: 26px 0 36px;
	background: #f7f2ec;
	color: var(--muted);
	text-align: center;
	font-size: 0.95rem;
}

@media (max-width: 1080px) 
{
	.hero-grid,
	.practical-wrap 
	{
		grid-template-columns: 1fr;
	}

	.hero 
	{
		background:
		linear-gradient(180deg, rgba(251,247,242,0.96) 0%, rgba(251,247,242,0.88) 48%, rgba(251,247,242,0.68) 100%),
		url('https://creches-alexandra.fr/images/fondc2.png?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
	}

	.hero-copy,.hero-visual 
	{
		margin: 0 auto;
		text-align: center;
	}

	.hero p 
	{
		margin-left: auto;
		margin-right: auto;
	}

	.hero-visual { min-height: auto; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.practical-grid { grid-template-columns: repeat(2, 1fr); }
}

#map 
{
	height: 550px;
	width:95%;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	overflow: hidden;
	display:block;
	margin:auto;
}

@media (max-width: 820px) 
{
	.header-inner 
	{
		flex-direction: column;
		padding: 14px 0 18px;
	}

	nav { gap: 14px 18px; }
	.feature-strip { grid-template-columns: 1fr; }
	#map { height: 350px;width:80%;}
}

@media (max-width: 640px) 
{
	.container { width: min(100% - 20px, 1180px); }
	.hero { padding-top: 42px; }
	.btn { width: 100%; }
	.values-grid,
	.practical-grid { grid-template-columns: 1fr; }
	.practical-box,
	.quote-box { padding: 22px; }
	.hero-copy { padding: 10px 0 0; }
	.mini-card h3 { font-size: 1.7rem; }
	#map { height: 350px;width:80%;}
	.values-grid {display:none;}
}
