/* Palette chaleureuse: gris chauds, crèmes riches, ors subtils */

:root {
	--color-bg: #0F0F0F;
	--color-bg-alt: #1A1A1A;
	--color-cream: #F8F4EC;
	--color-cream-soft: #F2EDE3;
	--color-gold: #C8A882;
	--color-gold-rich: #B8956F;
	--color-muted: #A69B8A;
	--color-warm-dark: #1F1F1F;
	--container: 1180px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-cream);
	font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
	line-height: 1.6;
	font-weight: 300;
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

main { display: block; flex: 1 0 auto; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; margin: 0 0 0.8em; line-height: 1.1; }
h1 { font-size: 4.2rem; font-weight: 700; letter-spacing: -0.02em; text-align: center; }
h2 { font-size: 2.8rem; font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-muted); font-weight: 500; }
h4 { font-size: 1.5rem; font-weight: 600; }
p { margin: 0 0 1.2em; }
.quote { font-style: italic; font-size: 1.1rem; color: var(--color-cream-soft); opacity: 0.95; }
.lead { font-size: 1.2rem; font-weight: 400; line-height: 1.7; }

.container { width: 90%; max-width: var(--container); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,11,11,0.8); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(214,179,112,0.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--color-cream); text-decoration: none; font-weight: 500; }
.brand-mark { display: inline-grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--color-gold); color: var(--color-gold); font-weight: 600; letter-spacing: 0.06em; }
.brand-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; padding: 0; color: var(--color-cream); }
.nav-toggle span { display: block; height: 2px; margin: 7px 0; background: var(--color-cream); }

.site-nav ul { display: flex; list-style: none; gap: 24px; padding: 0; margin: 0; align-items: center; }
.site-nav a { color: var(--color-cream); text-decoration: none; opacity: 0.8; }
.site-nav a:hover, .site-nav a.active { opacity: 1; color: var(--color-gold); }
.nav-cta { display: none; }

.header-cta { margin-left: 16px; }
.desktop-only { display: block; }

/* Buttons */
.btn { display: inline-block; padding: 12px 18px; border: 1px solid currentColor; text-decoration: none; transition: all 0.25s ease; cursor: pointer; }
.btn-primary { background: var(--color-gold); color: #1b1b1b; border-color: var(--color-gold); }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-gold); border-color: var(--color-gold); }
.btn-outline:hover { background: rgba(214,179,112,0.1); }
.link { color: var(--color-gold); text-decoration: none; }
.link:hover { text-decoration: underline; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero .bg { position: absolute; inset: 0; }
.hero .bg video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) contrast(1.1); }
.hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,22,18,0.3) 0%, rgba(15,14,12,0.6) 100%); }
.hero .content { position: relative; z-index: 2; padding: 15vh 0; max-width: 800px; margin: 0 auto; }
.hero h1 { color: var(--color-cream); text-shadow: 0 2px 12px rgba(0,0,0,0.4); margin-bottom: 0.3em; }
.hero .tagline { font-size: 1.4rem; color: var(--color-cream-soft); opacity: 0.95; margin-bottom: 2rem; font-weight: 300; line-height: 1.6; }

/* Sections */
section { padding: 80px 0; }
section:nth-child(even) { background: linear-gradient(135deg, rgba(26,26,26,0.3) 0%, rgba(42,42,42,0.2) 100%); }
.section-title { margin-bottom: 32px; position: relative; padding-bottom: 16px; text-align: center; }
.section-title::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 80px; height: 3px; background: linear-gradient(90deg, var(--color-gold), var(--color-gold-rich)); border-radius: 2px; }
.muted { color: var(--color-muted); }
.centered { text-align: center; }
.section-intro { font-size: 1.1rem; color: var(--color-muted); margin: 0 auto 48px; max-width: 600px; text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.card { 
	border: 1px solid rgba(200,168,130,0.25); 
	padding: 32px; 
	background: linear-gradient(135deg, rgba(248,244,236,0.03) 0%, rgba(242,237,227,0.01) 100%);
	border-radius: 8px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(2px);
}
.card h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; margin: 0 0 0.6rem; color: var(--color-cream); }
.card p { margin: 0; color: var(--color-cream-soft); opacity: 0.9; line-height: 1.6; }
.card:hover { 
	transform: translateY(-4px); 
	border-color: rgba(200,168,130,0.45); 
	box-shadow: 0 12px 32px rgba(0,0,0,0.15);
	background: linear-gradient(135deg, rgba(248,244,236,0.06) 0%, rgba(242,237,227,0.02) 100%);
}

.icon { width: 40px; height: 40px; border: 1px solid var(--color-gold); display: inline-grid; place-items: center; color: var(--color-gold); margin-bottom: 10px; font-weight: 600; }

.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.story { position: relative; min-height: 180px; background-size: cover; background-position: center; }
.story::after { content: attr(data-caption); position: absolute; left: 0; right: 0; bottom: 0; padding: 10px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); font-size: 0.9rem; }

.callout { text-align: center; border-top: 1px solid rgba(214,179,112,0.2);padding: 40px 0; }
.callout p { margin-bottom: 16px; }

/* Footer */
.site-footer { border-top: 1px solid rgba(214,179,112,0.2); margin-top: 60px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 24px; padding: 40px 0; align-items: start; }
.footer-top ul { list-style: none; padding: 0; margin: 0; }
.footer-top a { color: var(--color-cream); text-decoration: none; opacity: 0.9; }
.footer-top a:hover { color: var(--color-gold); }
.footer-bottom { padding: 16px 0; border-top: 1px solid rgba(214,179,112,0.2); color: var(--color-muted); font-size: 0.9rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(160px,1fr)); gap: 24px; align-items: start; }

/* Utilities */
.spacer { height: 32px; }
.center { text-align: center; }

/* Responsive */
@media (max-width: 900px) {
	h1 { font-size: 2.8rem; }
	h2 { font-size: 2.2rem; }
	.hero .tagline { font-size: 1.2rem; }
	.lead { font-size: 1.1rem; }
	
	.grid-3 { grid-template-columns: 1fr; gap: 20px; }
	.grid-2 { grid-template-columns: 1fr; gap: 20px; }
	.story-grid { grid-template-columns: 1fr 1fr; }
	.footer-top { grid-template-columns: 1fr; }
	.footer-links { grid-template-columns: 1fr; }
	
	/* Header mobile */
	.desktop-only { display: none; }
	.nav-toggle { display: block; }
	.site-nav { 
		display: none; 
		position: absolute; 
		right: 0; 
		top: 100%; 
		min-width: 250px;
		width: 100%;
		background: var(--color-bg-alt); 
		border: 1px solid rgba(200,168,130,0.2); 
		border-radius: 0 0 8px 8px;
		box-shadow: 0 8px 24px rgba(0,0,0,0.3);
	}
	.site-nav.open { display: block; }
	.site-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
	.site-nav li { border-top: 1px solid rgba(200,168,130,0.1); }
	.site-nav li:first-child { border-top: none; }
	.site-nav a { display: block; padding: 16px 20px; }
	.nav-cta { display: block; padding: 16px 20px; border-top: 1px solid rgba(200,168,130,0.2); }
	.btn-nav { width: 100%; text-align: center; margin: 0; }
	
	section { padding: 60px 0; }
	.card { padding: 24px; }
}

/* Animations et micro-interactions */
.fade-in-up { opacity: 0; transform: translateY(32px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Parallax subtil */
.hero .content { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Scroll cue */
.scroll-cue { position: absolute; left: 50%; transform: translateX(-50%); bottom: 32px; width: 28px; height: 42px; border: 2px solid rgba(200,168,130,0.7); border-radius: 16px; opacity: 0.9; }
.scroll-cue::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); top: 8px; width: 4px; height: 10px; background: var(--color-gold); border-radius: 3px; animation: scroll-dot 2s infinite; }
@keyframes scroll-dot { 0% { transform: translate(-50%, 0); opacity: 1; } 70% { transform: translate(-50%, 16px); opacity: 0; } 100% { opacity: 0; } }

/* Grid animations */
.grid-3 .card:nth-child(1) { animation-delay: 0.1s; }
.grid-3 .card:nth-child(2) { animation-delay: 0.2s; }
.grid-3 .card:nth-child(3) { animation-delay: 0.3s; }
.grid-2 .card:nth-child(1) { animation-delay: 0.1s; }
.grid-2 .card:nth-child(2) { animation-delay: 0.2s; }


