/* ============================================================
   ECHO D'ENCRE — Stylesheet
   Concept : "L'encre tombe, la peau répond — chaque tatouage
   est un écho qui ne s'éteint jamais."

   POURQUOI CE SITE EST IMPOSSIBLE À CONFONDRE ?
   → L'interaction "onde d'encre" au clic est une signature unique.
   → La palette bordeaux/vin ancre le site à Suze-la-Rousse.
   → Chaque section a un rythme asymétrique, jamais de grille clone.
   → Le grain vivant et les animations d'écho créent une identité
     sensorielle qu'aucun template ne propose.
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --noir: #111111;
  --noir-profond: #0a0a0a;
  --gris-sombre: #1a1a1a;
  --gris: #2a2a2a;
  --gris-moyen: #666;
  --gris-clair: #999;
  --ivoire: #F5F2EA;
  --ivoire-doux: #EDE9E0;
  --bordeaux: #2F6B4F;
  --bordeaux-clair: #3A7D5E;
  --bordeaux-glow: rgba(47, 107, 79, 0.3);

  /* Typo */
  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  --font-accent: 'Montserrat', -apple-system, sans-serif;

  /* Espacements */
  --section-pad: clamp(80px, 12vh, 160px);
  --container-max: 1200px;
  --nav-height: 64px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-base: 0.4s var(--ease-out-expo);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--noir);
  color: var(--ivoire);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay global */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Scrollbar personnalisé */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--noir);
}
::-webkit-scrollbar-thumb {
  background: var(--bordeaux);
  border-radius: 3px;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--bordeaux);
  outline-offset: 3px;
}

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

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

/* --- TYPOGRAPHIE --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

.heading-xl {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.01em;
}

.heading-md {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.heading-sm {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: normal;
}

.text-body {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--gris-clair);
  line-height: 1.75;
}

.text-accent {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--bordeaux-clair);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
  transition: background var(--transition-base);
  overflow: visible;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivoire);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-echo {
  position: relative;
}

.nav__logo-echo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.nav__logo:hover .nav__logo-echo::after {
  transform: scaleX(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-clair);
  transition: color var(--transition-base);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bordeaux);
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease-out-expo);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--ivoire);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: translateX(-50%) scale(1);
}

.nav__social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(240, 236, 228, 0.1);
  color: var(--gris-clair);
  transition: all 0.3s var(--ease-out-expo);
}

.nav__social-link:hover {
  border-color: var(--bordeaux);
  color: var(--ivoire);
  background: var(--bordeaux-glow);
}

.nav__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivoire);
  background: var(--bordeaux);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.nav__cta:hover::before {
  opacity: 1;
}

.nav__cta:hover {
  background: var(--bordeaux-clair);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--bordeaux-glow);
}

.nav__cta:active {
  transform: translateY(0) scale(0.98);
}

/* Burger menu mobile */
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(240, 236, 228, 0.12);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  transition: border-color 0.3s;
}

.nav__burger:hover {
  border-color: var(--bordeaux);
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ivoire);
  border-radius: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav__burger span:nth-child(1) {
  top: 14px;
}
.nav__burger span:nth-child(2) {
  top: 21px;
}
.nav__burger span:nth-child(3) {
  top: 28px;
}

.nav__burger.active {
  border-color: var(--bordeaux);
}

.nav__burger.active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.nav__burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.nav__burger.active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.nav__social--mobile {
  display: none;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--noir-profond);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.25;
  filter: grayscale(0.7) brightness(0.8) blur(10px);
  transform: scale(1.06);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transition: opacity 1.5s var(--ease-out-expo);
}

.hero__content.revealed {
  opacity: 1;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--bordeaux-clair);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) 1.8s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivoire);
  line-height: 0.95;
  margin-bottom: 16px;
  position: relative;
}

.hero__title span {
  display: block;
}

.hero__title-encre {
  font-size: 0.45em;
  letter-spacing: 0.35em;
  font-weight: 300;
  color: var(--gris-clair);
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  color: var(--gris-clair);
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) 2.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 3s forwards;
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-moyen);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--bordeaux), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- SECTION COMMUNE --- */
.section {
  position: relative;
  padding: var(--section-pad) clamp(20px, 5vw, 80px);
}

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

.section__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bordeaux-clair);
  margin-bottom: 16px;
}

.section__divider {
  width: 48px;
  height: 1px;
  background: var(--bordeaux);
  margin: 32px 0;
}

/* Animation au scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Délais échelonnés */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- ARTISTE --- */
.artiste {
  background: var(--noir);
}

.artiste__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.artiste__visual {
  position: relative;
}

.artiste__image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
}

.artiste__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 2px;
  pointer-events: none;
}

.artiste__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.2) brightness(0.9);
  transition: filter 0.6s;
}

.artiste__image-wrapper:hover .artiste__image {
  filter: grayscale(0) brightness(1);
}

.artiste__accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--bordeaux);
  border-radius: 50%;
  opacity: 0.3;
}

.artiste__text {
  padding-right: clamp(0px, 4vw, 60px);
}

.artiste__name {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  color: var(--bordeaux-clair);
  margin-bottom: 8px;
}

.artiste__description {
  margin-top: 24px;
}

/* --- STYLES D'ENCRE --- */
.styles {
  background: var(--gris-sombre);
  overflow: hidden;
}

.styles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.style-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  background: var(--noir);
}

.style-card:nth-child(2) {
  margin-top: 40px;
}

.style-card:nth-child(3) {
  margin-top: -40px;
}

.style-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.6) brightness(0.4);
  transition: all 0.6s var(--ease-out-expo);
}

.style-card:hover .style-card__bg {
  filter: grayscale(0.2) brightness(0.55);
  transform: scale(1.05);
}

.style-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 3vw, 40px);
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 100%);
  z-index: 1;
}

.style-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 8px;
}

.style-card__desc {
  font-size: 0.85rem;
  color: var(--gris-clair);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out-expo);
}

.style-card:hover .style-card__desc {
  opacity: 1;
  transform: translateY(0);
}

/* Anneau d'écho signature au hover */
.style-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 1px solid var(--bordeaux);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.8s var(--ease-out-expo);
  pointer-events: none;
  z-index: 2;
}

.style-card:hover::after {
  width: 200px;
  height: 200px;
  opacity: 0.15;
}

/* --- LE RITUEL --- */
.rituel {
  background: var(--noir);
  overflow: hidden;
}

.rituel__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
  margin-top: 60px;
  position: relative;
}

.rituel__timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bordeaux), transparent);
}

.rituel__step {
  text-align: center;
  position: relative;
}

.rituel__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--bordeaux);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bordeaux-clair);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  background: var(--noir);
  transition: all 0.4s var(--ease-out-expo);
}

.rituel__step:hover .rituel__step-number {
  background: var(--bordeaux);
  color: var(--ivoire);
  box-shadow: 0 0 30px var(--bordeaux-glow);
}

.rituel__step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.rituel__step-text {
  font-size: 0.9rem;
  color: var(--gris-clair);
  line-height: 1.7;
}

/* --- GALERIE --- */
.galerie {
  background: var(--noir);
  overflow: hidden;
}

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
  margin-top: 48px;
}

.galerie__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--gris-sombre);
}

.galerie__item--tall {
  grid-row: span 2;
}

.galerie__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.8);
  transition: all 0.6s var(--ease-out-expo);
}

.galerie__item:hover .galerie__img {
  filter: grayscale(0) brightness(0.95);
  transform: scale(1.05);
}

/* Anneau écho sur les items galerie */
.galerie__item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 1px solid var(--bordeaux);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.8s var(--ease-out-expo);
  pointer-events: none;
  z-index: 2;
}

.galerie__item:hover::after {
  width: 160px;
  height: 160px;
  opacity: 0.2;
}

@media (max-width: 768px) {
  .galerie__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .galerie__item--tall {
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  .galerie__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .galerie__item--tall {
    grid-row: span 1;
  }
}

/* --- L'ONDE (section inattendue) --- */
.onde {
  background: var(--noir-profond);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.onde__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.onde__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 24px;
}

.onde__instruction {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 300;
  color: var(--gris-clair);
  margin-bottom: 32px;
}

.onde__words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  min-height: 200px;
  align-items: center;
}

.onde__word {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--ivoire);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s var(--ease-out-expo);
  padding: 8px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
}

.onde__word.visible {
  opacity: 1;
  transform: scale(1);
}

.onde__word.visible:hover {
  border-color: var(--bordeaux);
  background: rgba(114, 47, 55, 0.1);
}

.onde__counter {
  margin-top: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris-moyen);
}

/* --- MUR DES ÉCHOS (avis) --- */
.avis {
  background: var(--gris-sombre);
}

.avis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.avis-card {
  background: var(--noir);
  border: 1px solid rgba(240, 236, 228, 0.05);
  padding: clamp(24px, 3vw, 40px);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.avis-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--bordeaux);
  opacity: 0.15;
  line-height: 1;
}

.avis-card:hover {
  border-color: rgba(47, 107, 79, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.avis-card__text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ivoire-doux);
  margin-bottom: 20px;
}

.avis-card__author {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris-moyen);
}

.avis-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.avis-card__star {
  color: var(--bordeaux);
  font-size: 0.9rem;
}

/* --- SUZE-LA-ROUSSE --- */
.lieu {
  background: var(--noir);
  overflow: hidden;
}

.lieu__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.lieu__visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
}

.lieu__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) brightness(0.85);
  transition: filter 0.6s;
}

.lieu__visual:hover .lieu__image {
  filter: grayscale(0) brightness(1);
}

.lieu__text {
  padding-left: clamp(0px, 2vw, 20px);
}

.lieu__address {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--gris-clair);
  line-height: 1.8;
}

/* --- CONTACT --- */
.contact {
  background: var(--gris-sombre);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 48px;
}

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

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

.contact__item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 236, 228, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--bordeaux-clair);
}

.contact__item-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact__item-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris-moyen);
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: 1rem;
  color: var(--ivoire);
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact__map {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(240, 236, 228, 0.06);
}

.contact__map iframe {
  width: 100%;
  height: 350px;
  border: none;
  filter: grayscale(0.8) brightness(0.7) contrast(1.1);
  transition: filter 0.4s;
}

.contact__map:hover iframe {
  filter: grayscale(0.4) brightness(0.8);
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn--primary {
  background: var(--bordeaux);
  color: var(--ivoire);
}

.btn--primary:hover {
  background: var(--bordeaux-clair);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--bordeaux-glow);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--ivoire);
  border: 1px solid rgba(240, 236, 228, 0.15);
}

.btn--outline:hover {
  border-color: var(--bordeaux);
  background: rgba(114, 47, 55, 0.1);
}

.btn--small {
  padding: 8px 16px;
  font-size: 0.72rem;
}

.btn--copy {
  background: transparent;
  color: var(--gris-clair);
  border: 1px solid rgba(240, 236, 228, 0.1);
  padding: 6px 14px;
  font-size: 0.7rem;
}

.btn--copy:hover {
  border-color: var(--bordeaux);
  color: var(--ivoire);
}

.btn--copy.copied {
  border-color: #4a7;
  color: #4a7;
}

/* Itinéraire */
.btn--itineraire {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

/* --- OVERLAY RDV / APPELER --- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.overlay__content {
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--ease-out-expo);
  max-width: 500px;
  padding: 0 24px;
}

.overlay.active .overlay__content {
  transform: scale(1) translateY(0);
}

.overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(240, 236, 228, 0.1);
  border-radius: 50%;
  cursor: pointer;
  color: var(--gris-clair);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.overlay__close:hover {
  border-color: var(--bordeaux);
  color: var(--ivoire);
}

.overlay__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux-clair);
  margin-bottom: 16px;
}

.overlay__value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--ivoire);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.overlay__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
  background: var(--noir-profond);
  border-top: 1px solid rgba(240, 236, 228, 0.06);
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 80px) 32px;
}

/* Top row : brand + nav + social */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
}

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

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivoire);
}

.footer__logo-encre {
  font-weight: 300;
  font-size: 0.75em;
  letter-spacing: 0.3em;
  color: var(--gris-clair);
}

.footer__tagline {
  font-size: 0.72rem;
  color: var(--gris-moyen);
  letter-spacing: 0.04em;
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.78rem;
  color: var(--gris-clair);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer__nav a:hover {
  color: var(--bordeaux-clair);
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(240, 236, 228, 0.1);
  color: var(--gris-clair);
  transition: all 0.3s;
}

.footer__social a:hover {
  border-color: var(--bordeaux);
  color: var(--ivoire);
  background: var(--bordeaux-glow);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Bottom row : copyright + legal */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 0.72rem;
  color: var(--gris-moyen);
  letter-spacing: 0.03em;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  color: var(--gris-moyen);
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: var(--ivoire);
}

/* --- PAGES LÉGALES --- */
.legal {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--noir);
}

.legal__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 40px;
  color: var(--ivoire);
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ivoire);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal p, .legal li {
  font-size: 0.95rem;
  color: var(--gris-clair);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 24px;
}

.legal a {
  color: var(--bordeaux-clair);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal a:hover {
  color: var(--ivoire);
}

/* --- NOS LOCAUX --- */
.locaux {
  background: var(--gris-sombre);
  overflow: hidden;
}

.locaux__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.locaux__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--gris);
}

.locaux__item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.locaux__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.6s var(--ease-out-expo);
}

.locaux__item:hover .locaux__img {
  filter: brightness(1);
}

.locaux__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gris-moyen);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.locaux__placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .locaux__gallery {
    grid-template-columns: 1fr;
  }

  .locaux__item--large {
    grid-column: span 1;
  }
}

/* --- INSTAGRAM --- */
.instagram {
  background: var(--noir);
  overflow: hidden;
}

.instagram__intro {
  max-width: 480px;
  margin: 20px auto 0;
  font-size: 0.95rem;
  color: var(--gris-clair);
  line-height: 1.7;
}

.instagram__embed {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.instagram__embed iframe {
  width: 100%;
  max-width: 540px;
  height: 600px;
  border: none;
  border-radius: 6px;
  background: var(--gris-sombre);
}

.instagram__follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivoire);
  background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.instagram__follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(193, 53, 132, 0.35);
}

.instagram__follow:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .instagram__embed iframe {
    height: 500px;
  }

  .instagram__follow {
    font-size: 0.78rem;
    padding: 12px 24px;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .styles__grid {
    gap: 1px;
  }

  .style-card:nth-child(2),
  .style-card:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--noir-profond);
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                visibility 0.5s;
    z-index: 999;
    padding: 80px 0 40px;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav__links li {
    list-style: none;
    overflow: hidden;
  }

  .nav__links .nav__link {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 18px 0;
    color: var(--ivoire);
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                color 0.3s;
  }

  .nav__links.open .nav__link {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__links li:nth-child(1) .nav__link { transition-delay: 0.05s; }
  .nav__links li:nth-child(2) .nav__link { transition-delay: 0.1s; }
  .nav__links li:nth-child(3) .nav__link { transition-delay: 0.15s; }
  .nav__links li:nth-child(4) .nav__link { transition-delay: 0.2s; }
  .nav__links li:nth-child(5) .nav__link { transition-delay: 0.25s; }

  .nav__links .nav__link:hover,
  .nav__links .nav__link:focus {
    color: var(--bordeaux-clair);
  }

  .nav__links .nav__cta {
    margin-top: 30px;
    font-size: 0.9rem;
    padding: 14px 32px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
                opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.3s,
                background 0.3s, box-shadow 0.3s;
  }

  .nav__links.open .nav__cta {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__burger {
    display: flex;
  }

  .nav__social--desktop {
    display: none;
  }

  .nav__social--mobile {
    display: flex !important;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.35s,
                opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.35s;
  }

  .nav__links.open .nav__social--mobile {
    transform: translateY(0);
    opacity: 1;
  }

  .artiste__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artiste__visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .artiste__text {
    padding-right: 0;
    text-align: center;
  }

  .styles__grid {
    grid-template-columns: 1fr;
  }

  .style-card {
    aspect-ratio: 16/9;
  }

  .rituel__timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rituel__timeline::before {
    display: none;
  }

  .avis__grid {
    grid-template-columns: 1fr;
  }

  .lieu__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lieu__text {
    padding-left: 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(2.5rem, 14vw, 4.5rem);
  }

  .section {
    padding: 60px 16px;
  }
}

/* Easter egg */
.easter-egg-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gris-sombre);
  border: 1px solid var(--bordeaux);
  padding: 16px 28px;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ivoire-doux);
  z-index: 3000;
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s var(--ease-out-expo);
  white-space: nowrap;
}

.easter-egg-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
