/* Magnétisme Énergies — v7 : champ énergétique / aura magnétique */

:root {
	--void: #050414;
	--indigo: #140f2e;
	--violet: #7b5cff;
	--cyan: #43e7ff;
	--gold: #ffb86b;
	--ink: #eee9ff;
	--muted: #a79fc9;
	--glass: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.12);
	--radius: 24px;
	--font-heading: "Cinzel", serif;
	--font-body: "Sora", sans-serif;
	--max-width: 1140px;
}

* , *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	line-height: 1.75;
	background:
		radial-gradient(circle at 20% 10%, rgba(123, 92, 255, 0.35), transparent 45%),
		radial-gradient(circle at 85% 15%, rgba(67, 231, 255, 0.22), transparent 40%),
		radial-gradient(circle at 50% 100%, rgba(255, 184, 107, 0.12), transparent 50%),
		linear-gradient(180deg, var(--void), var(--indigo) 45%, var(--void));
	background-attachment: fixed;
	position: relative;
	overflow-x: hidden;
}

/* Floating energy particles (populated by JS) */
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle {
	position: absolute; border-radius: 50%;
	background: radial-gradient(circle, rgba(123, 92, 255, 0.9), rgba(67, 231, 255, 0) 70%);
	filter: blur(1px);
	animation: drift linear infinite;
}
@keyframes drift {
	0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
	10% { opacity: 0.8; }
	90% { opacity: 0.6; }
	100% { transform: translateY(-120vh) translateX(20px) scale(1.4); opacity: 0; }
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan); text-decoration: none; }
a:hover, a:focus { color: var(--gold); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--violet); color: #fff; padding: 0.5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }

h1, h2, h3 { font-family: var(--font-heading); color: var(--ink); line-height: 1.25; font-weight: 600; }
h2 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); margin: 0 0 1rem; }

.glass {
	background: var(--glass); border: 1px solid var(--glass-border);
	border-radius: var(--radius); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}

/* Header */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(5, 4, 20, 0.75); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--glass-border);
}

.header-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; position: relative; z-index: 1; min-height: 130px; }

.brand { display: flex; align-items: center; gap: 0.9rem; }
.logo-link {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	z-index: 5;
}
.brand .logo { width: 240px; height: auto; filter: drop-shadow(0 0 16px rgba(123, 92, 255, 0.9)); }
.site-title { font-family: var(--font-heading); font-size: 1.15rem; margin: 0; }
.site-tagline { margin: 0.15rem 0 0; font-size: 0.8rem; color: var(--muted); }

.header-contact { text-align: right; }
.phone {
	display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600;
	padding: 0.55rem 1.1rem; border-radius: 999px;
	background: linear-gradient(135deg, var(--violet), var(--cyan)); color: #050414;
}
.phone:hover { filter: brightness(1.1); text-decoration: none; }
.header-note { margin: 0.35rem 0 0; font-size: 0.75rem; color: var(--muted); }

/* Hero with energy rings around portrait */
.hero { padding: 4.5rem 0 3rem; position: relative; z-index: 1; }
.hero-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.hero-text { flex: 1 1 380px; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	color: var(--cyan); font-weight: 600; font-size: 0.85rem;
	text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.9rem;
}
.hero-text h1 {
	font-size: clamp(2.1rem, 4vw, 3.1rem); margin: 0 0 1rem;
	background: linear-gradient(135deg, #ffffff, var(--violet) 60%, var(--cyan));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-text p { color: var(--muted); font-size: 1.05rem; max-width: 46ch; }

.aura-frame { flex: 1 1 340px; display: flex; justify-content: center; position: relative; }
.aura-rings { position: relative; width: max(477px, min(360px, 90%)); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.aura-ring {
	position: absolute; inset: 0; border-radius: 50%;
	border: 1px solid rgba(123, 92, 255, 0.5);
	animation: pulse 4s ease-out infinite;
}
.aura-ring.r2 { animation-delay: 1.3s; border-color: rgba(67, 231, 255, 0.45); }
.aura-ring.r3 { animation-delay: 2.6s; border-color: rgba(255, 184, 107, 0.4); }
@keyframes pulse {
	0% { transform: scale(0.72); opacity: 0.9; }
	100% { transform: scale(1.35); opacity: 0; }
}
.aura-photo {
	position: relative; z-index: 1; width: 68%; aspect-ratio: 371/490; overflow: hidden;
	border-radius: 50% / 42%; border: 2px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 0 60px rgba(123, 92, 255, 0.55);
}
.aura-photo img { width: 100%; height: 100%; object-fit: cover; }

.btn {
	display: inline-flex; align-items: center; gap: 0.5rem;
	background: linear-gradient(135deg, var(--violet), var(--cyan)); color: #050414; font-weight: 700;
	padding: 0.9rem 1.7rem; border-radius: 999px; margin-top: 1rem;
	box-shadow: 0 10px 30px -12px rgba(123, 92, 255, 0.7);
}
.btn:hover { filter: brightness(1.08); text-decoration: none; }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--glass-border); box-shadow: none; }
.btn-outline:hover { background: var(--glass); color: var(--ink); }

/* Sections */
.section { padding: 3.5rem 0; position: relative; z-index: 1; }
.section-card { padding: 2.5rem; }
.section-inner { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.section-inner > * { flex: 1 1 320px; }
.section-inner img { border-radius: 18px; }

.text-right { text-align: right; }
.text-center { text-align: center; }
.divider-wave { display: block; width: 100%; height: 40px; margin: 0.5rem 0 1.5rem; opacity: 0.6; }

.pill {
	display: inline-flex; align-items: center; gap: 0.4rem;
	background: var(--glass); border: 1px solid var(--glass-border);
	color: var(--cyan); font-weight: 700; font-size: 0.75rem;
	padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 0.75rem;
}

/* Energy cards grid */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.card {
	padding: 1.6rem; border-radius: 18px;
	background: var(--glass); border: 1px solid var(--glass-border);
	position: relative; overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.card::before {
	content: ""; position: absolute; inset: -40% -40% auto auto; width: 120px; height: 120px;
	background: radial-gradient(circle, rgba(123, 92, 255, 0.5), transparent 70%);
	opacity: 0; transition: opacity 0.3s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--violet); }
.card:hover::before { opacity: 1; }
.card i { color: var(--cyan); font-size: 1.3rem; margin-bottom: 0.6rem; display: inline-block; }
.card h3 { font-size: 1rem; margin: 0 0 0.5rem; color: var(--ink); }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; position: relative; z-index: 1; }

/* Social */
.social-icons { display: none; justify-content: center; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.social-icons a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--glass); border: 1px solid var(--glass-border); color: var(--ink);
}
.social-icons a:hover { background: linear-gradient(135deg, var(--violet), var(--cyan)); color: #050414; text-decoration: none; }
.social-icons a.disabled { pointer-events: none; opacity: 0.35; filter: grayscale(1); cursor: not-allowed; }
.social-icons a.disabled:hover { background: var(--glass); color: var(--ink); }

/* Price list */
.price-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.price-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--glass-border); }
.price-list .price { font-weight: 700; color: var(--cyan); white-space: nowrap; }

.map-embed { margin: 1.5rem 0; }
.map-embed iframe { width: 100%; max-width: 600px; height: 400px; border: 0; border-radius: 16px; filter: saturate(0.7) brightness(0.85) hue-rotate(220deg); }

/* Footer */
.site-footer { background: rgba(5, 4, 20, 0.9); color: var(--muted); margin-top: 3rem; border-top: 1px solid var(--glass-border); position: relative; z-index: 1; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1.75rem 0; }
.footer-nav a { color: var(--ink); }
.footer-nav .sep { margin: 0 0.5rem; opacity: 0.5; }
.footer-copy { margin: 0; opacity: 0.85; font-size: 0.9rem; }

@media (max-width: 900px) {
	.brand .logo { width: 150px; height: auto; }
}

@media (max-width: 640px) {
	.header-inner { flex-direction: column; text-align: center; }
	.brand { flex-direction: column; }
	.logo-link { position: static; transform: none; }
	.brand .logo { width: 140px; height: auto; }
	.header-contact { text-align: center; }
	.footer-inner { flex-direction: column; text-align: center; }
}
