@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400;1,700&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --mint: #8FFFCB;
  --mint-med: #5CEAA5;
  --mint-dark: #3AD48E;
  --black: #0D0D0D;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --light: #E8F5EE;
  --cream: #F1F8F3;
  --paper: #ECF6F0;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Serpentin vert décoratif — utilisable en background sur n'importe quelle section */
  --serpentine: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'><path d='M 0 40 Q 50 10, 100 40 T 200 40 T 300 40 T 400 40' fill='none' stroke='%235CEAA5' stroke-width='2.5' stroke-linecap='round' opacity='0.45'/></svg>");
  --serpentine-soft: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'><path d='M 0 40 Q 50 10, 100 40 T 200 40 T 300 40 T 400 40' fill='none' stroke='%238FFFCB' stroke-width='2' stroke-linecap='round' opacity='0.35'/></svg>");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Accessibility — respecte les préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip to content (accessibility lecteurs d'écran / clavier) */
.skip-link {
  position: absolute; top: -50px; left: 8px;
  background: var(--black); color: var(--mint);
  padding: 12px 18px; z-index: 10001;
  font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  border-radius: var(--radius); border: 2px solid var(--mint);
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; outline: none; }
body {
  background-color: var(--cream);
  /* Juste un pointillé mint très discret sur toute la page */
  background-image: radial-gradient(rgba(92,234,165,0.09) 1px, transparent 1.5px);
  background-size: 38px 38px;
  font-family: 'Syne', sans-serif; color: var(--black); overflow-x: hidden;
}
::selection { background: var(--mint); color: var(--black); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
input, textarea, select, button { font-family: 'Syne', sans-serif; }
input::placeholder, textarea::placeholder { color: #bbb; }
img { max-width: 100%; display: block; }

/* ═══ ANIMATIONS ═══ */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes scrollDot { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(8px)} }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-33.33%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes haloPulse { 0%,100%{transform:scale(1);opacity:0.4} 50%{transform:scale(1.15);opacity:0.7} }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ═══ REVEAL ON SCROLL ═══ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ═══ SVG DRAWN STROKES ═══ */
.drawn-path { transition: stroke-dashoffset 0.7s cubic-bezier(0.22,1,0.36,1); }
.drawn-active { stroke-dashoffset: 0 !important; }

/* ═══ SECTION SEPARATOR : 3 points mint discrets ═══ */
.section-sep {
  position: relative; height: 40px; width: 100%; pointer-events: none;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.section-sep span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mint-med);
  opacity: 0.7;
}
.section-sep span:nth-child(2) { background: var(--mint-dark); opacity: 0.85; }
.section-sep.dark { background: var(--black); }
.section-sep.mint { background: var(--mint); }

/* ═══ NAVBAR ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 clamp(20px, 5vw, 80px); height: 70px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(241,248,243,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(143,255,203,0.35);
}
.nav-logo { display: flex; align-items: baseline; gap: 1px; }
.nav-logo .mp { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 26px; font-style: italic; color: var(--black); }
.nav-logo .com { font-weight: 400; font-size: 22px; color: var(--black); }
.nav-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); display: inline-block; margin-left: 2px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--gray); font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  transition: color 0.25s; position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6' preserveAspectRatio='none'><path d='M 1 4 Q 15 1 30 3 Q 45 5 59 2' fill='none' stroke='%235CEAA5' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-size: 100% 100%;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:not(.nav-cta):hover { color: var(--mint-dark); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 24px; background: var(--mint); color: var(--black) !important;
  font-size: 13px !important; font-weight: 700 !important; letter-spacing: 0.5px;
  border: 2px solid var(--mint); transition: all 0.3s !important;
  border-radius: var(--radius-pill);
  position: relative;
  box-shadow: 0 0 0 0 rgba(143,255,203,0.7);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.nav-cta:hover {
  background: transparent !important;
  animation: none;
  transform: translateY(-1px);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(143,255,203,0.6); }
  50%      { box-shadow: 0 0 0 10px rgba(143,255,203,0); }
}

/* ═══ BURGER MENU (mobile) ═══ */
.nav-burger {
  display: none; width: 40px; height: 40px; padding: 0; margin-left: auto;
  background: transparent; border: none; cursor: pointer; position: relative;
  border-radius: 50%; transition: background 0.25s;
}
.nav-burger:hover { background: rgba(143,255,203,0.15); }
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--black);
  margin: 5px auto; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 100px 24px 60px; position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(143,255,203,0.19) 1.5px, transparent 1.5px);
  background-size: 48px 48px; opacity: 0.5;
}
.hero-content { position: relative; z-index: 1; }
.hero-title-wrap { position: relative; display: inline-block; }
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 700; font-style: italic;
  color: var(--black); letter-spacing: -4px; line-height: 1; margin: 0;
  min-height: clamp(72px, 14vw, 160px);
}
.hero-title .com-part { font-family: 'Syne', sans-serif; font-weight: 400; font-style: normal; letter-spacing: -2px; }
.cursor {
  display: inline-block; width: 4px; height: 0.75em;
  background: var(--mint-dark); margin-left: 4px; vertical-align: baseline;
  animation: blink 0.65s step-end infinite;
}
.cursor.hidden { opacity: 0; animation: none; transition: opacity 0.4s; }
.hero-bar-svg {
  position: absolute; bottom: 12%; left: -5%; width: 110%; height: auto; z-index: -1;
}
.hero-bar-path {
  stroke-dasharray: 640; stroke-dashoffset: 640;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22,1,0.36,1);
}
.hero-bar-path.drawn { stroke-dashoffset: 0; }
.hero-tagline {
  font-size: clamp(14px, 2vw, 20px); font-style: italic;
  color: var(--gray); margin-top: 28px; letter-spacing: 1px;
  opacity: 0; transform: translateY(14px); transition: all 0.6s ease;
}
.hero-tagline.show { opacity: 1; transform: translateY(0); }
.hero-tagline-line { max-width: 220px; margin: 4px auto 0; opacity: 0; transition: opacity 0.5s ease 0.3s; }
.hero-tagline-line.show { opacity: 1; }
.hero-sub {
  font-size: clamp(13px, 1.6vw, 17px); color: var(--gray);
  margin-top: 32px; max-width: 500px; line-height: 1.7; margin-left: auto; margin-right: auto;
  opacity: 0; transform: translateY(14px); transition: all 0.6s ease 0.2s;
}
.hero-sub.show { opacity: 1; transform: translateY(0); }
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; margin-top: 44px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px); transition: all 0.6s ease 0.4s;
}
.hero-buttons.show { opacity: 1; transform: translateY(0); }

/* ═══ BUTTONS ═══ */
.btn-primary, .btn-secondary, .btn-mint, .btn-ghost {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; font-size: 14px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: all 0.35s;
  border-radius: var(--radius-pill); border: 2px solid transparent; overflow: hidden;
}
.btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background: var(--mint); color: var(--black); border-color: var(--mint); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--black); border-color: #ddd; }
.btn-secondary:hover { border-color: var(--mint); color: var(--mint-dark); transform: translateY(-2px); }
.btn-mint {
  background: var(--mint); color: var(--black); border-color: var(--mint);
  box-shadow: 0 8px 24px -10px rgba(58,212,142,0.7);
}
.btn-mint:hover {
  background: var(--black); color: var(--mint); border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(13,13,13,0.4);
}
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }

.btn-primary::before, .btn-mint::before {
  content: ''; position: absolute; inset: -10px; border-radius: var(--radius-pill);
  background: radial-gradient(circle, rgba(143,255,203,0.45), transparent 65%);
  opacity: 0; transition: opacity 0.4s; z-index: -1;
}
.btn-primary:hover::before, .btn-mint:hover::before { opacity: 1; animation: haloPulse 1.6s ease-in-out infinite; }

/* Floating drawn elements */
.hero-float {
  position: absolute; opacity: 0; transition: opacity 0.8s ease;
}
.hero-float.show { opacity: 1; }
.hero-float-1 { top: 12%; left: 8%; transition-delay: 0.2s; }
.hero-float-1.show { opacity: 0.6; animation: floaty 4s ease-in-out infinite; }
.hero-float-2 { top: 20%; right: 10%; transition-delay: 0.4s; }
.hero-float-2.show { opacity: 0.5; animation: floaty 5s ease-in-out 0.5s infinite; }
.hero-float-3 { bottom: 22%; left: 12%; transition-delay: 0.6s; }
.hero-float-3.show { opacity: 0.4; animation: floaty 4.5s ease-in-out 1s infinite; }
.hero-float-4 { bottom: 18%; right: 8%; transition-delay: 0.5s; }
.hero-float-4.show { opacity: 0.5; animation: floaty 5s ease-in-out 0.3s infinite; }

/* Cursor trail (hero) */
.cursor-trail {
  position: fixed; pointer-events: none; width: 12px; height: 12px;
  border-radius: 50%; background: var(--mint); opacity: 0;
  transform: translate(-50%, -50%); z-index: 999;
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  mix-blend-mode: multiply;
}
.cursor-trail.active { opacity: 0.65; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; transition: opacity 0.6s ease 1.2s;
}
.scroll-cue.show { opacity: 0.45; }
.scroll-mouse {
  width: 20px; height: 32px; border: 2px solid var(--mint-med); border-radius: 10px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-mouse-dot {
  width: 3px; height: 8px; background: var(--mint-med); border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

/* ═══ MARQUEE ═══ */
.marquee-strip {
  background: var(--mint); padding: 14px 0; overflow: hidden; white-space: nowrap;
  border-top: 2px solid rgba(58,212,142,0.19);
  border-bottom: 2px solid rgba(58,212,142,0.19);
}
.marquee-track { display: inline-flex; animation: marquee 20s linear infinite; }
.marquee-item {
  font-size: 14px; font-weight: 700; color: var(--black);
  letter-spacing: 2px; text-transform: uppercase; margin-right: 28px;
}

/* ═══ SECTION HEADERS ═══ */
.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.section-label span {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 4px; color: var(--mint-dark);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 700;
  color: var(--black); margin-bottom: 64px; line-height: 1.1; font-style: italic;
}
.highlight {
  position: relative; display: inline; white-space: nowrap;
}
.highlight svg {
  position: absolute; left: -4%; bottom: -4px; width: 108%; height: 110%; z-index: 0;
}
.highlight span { position: relative; z-index: 1; }
.highlight .hl-path {
  stroke-dasharray: 220; stroke-dashoffset: 220;
  stroke-width: 28;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s;
}
.visible .highlight .hl-path, .highlight.active .hl-path { stroke-dashoffset: 0; }
/* Petite étoile qui pop à côté du mot surligné */
.highlight::after {
  content: '★'; position: absolute; top: -18px; right: -22px;
  font-size: 18px; color: var(--mint-dark);
  opacity: 0; transform: scale(0) rotate(-30deg);
  transition: opacity 0.5s ease 0.9s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s;
}
.visible .highlight::after, .highlight.active::after {
  opacity: 1; transform: scale(1) rotate(0deg);
}

/* ═══ SERVICES ═══ */
.services {
  padding: 120px clamp(20px, 5vw, 80px);
  background: var(--cream); position: relative; overflow: hidden;
  /* Discrète trame diagonale unique */
  background-image:
    repeating-linear-gradient(
      -22deg,
      transparent 0,
      transparent 90px,
      rgba(143,255,203,0.07) 90px,
      rgba(143,255,203,0.07) 91px,
      transparent 91px,
      transparent 180px
    );
}
.services-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }

/* Décors géométriques flottants (étoile + cercle) */
.services-inner::before,
.services-inner::after {
  content: ''; position: absolute; background-repeat: no-repeat; background-size: contain;
  pointer-events: none; z-index: 0;
}
/* Grande étoile décorative en haut à gauche */
.services-inner::before {
  top: 20px; left: -50px; width: 90px; height: 90px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90'><path d='M45 6 L52 36 L82 36 L57 54 L66 84 L45 66 L24 84 L33 54 L8 36 L38 36 Z' fill='none' stroke='%235CEAA5' stroke-width='2.5' stroke-linejoin='round'/></svg>");
  opacity: 0.35; transform: rotate(-12deg);
  animation: floaty 5s ease-in-out infinite;
}
/* Cercle ovale décoratif en bas à droite */
.services-inner::after {
  bottom: 60px; right: -40px; width: 110px; height: 110px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 110'><ellipse cx='55' cy='55' rx='48' ry='42' fill='none' stroke='%238FFFCB' stroke-width='3' transform='rotate(-15 55 55)'/></svg>");
  opacity: 0.4;
  animation: floaty 6s ease-in-out 1s infinite;
}

/* Liste verticale : une carte par ligne */
.services-grid {
  display: flex; flex-direction: column; gap: 10px;
}

/* Carte service : disposition horizontale ultra-compacte */
.service-card {
  position: relative; padding: 28px 28px 28px 22px;
  background: rgba(255,255,255,0.78);
  border: 2px solid rgba(58,212,142,0.18);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center; gap: 0 18px;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22,1,0.36,1),
    border-color 0.35s,
    background 0.35s,
    box-shadow 0.45s;
}
/* Placement : icône (col 1) — bloc titre (col 2) — serpentin de remplissage (col 3) — prix (col 4) */
.service-card .top   { grid-column: 1; grid-row: 1 / span 99; align-self: center; }
.service-card .price { grid-column: 4; grid-row: 1 / span 99; align-self: center; }
.service-card h3,
.service-card .tagline,
.service-card ul,
.service-card .service-link { grid-column: 2; }

/* Colonne 3 : remplit le vide horizontal avec une ligne de points mint */
.service-card::before {
  content: '';
  grid-column: 3; grid-row: 1 / span 99; align-self: center;
  height: 6px; min-width: 60px;
  background-image: radial-gradient(circle, var(--mint-med) 1.5px, transparent 1.8px);
  background-size: 14px 6px; background-repeat: repeat-x;
  background-position: 0 center;
  opacity: 0.5;
  transition: opacity 0.4s, background-position 0.7s ease;
  pointer-events: none;
}
.service-card:hover::before, .service-card.expanded::before {
  opacity: 0.9;
  background-position: 14px center;
}

/* Halo mint qui pulse au survol — vient depuis l'arrière-plan, plus chic qu'une barre */
.service-card::after {
  content: ''; position: absolute; inset: -2px; border-radius: var(--radius-lg);
  background: radial-gradient(circle at 12% 50%, rgba(143,255,203,0.35), transparent 55%);
  opacity: 0; transition: opacity 0.5s ease;
  pointer-events: none; z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover, .service-card.expanded {
  background: var(--white);
  border-color: var(--mint);
  transform: translateX(6px);
  box-shadow:
    0 18px 40px -22px rgba(58,212,142,0.5),
    inset 0 0 0 1px rgba(143,255,203,0.4);
}
.service-card:hover::after, .service-card.expanded::after { opacity: 1; }

/* Colonne gauche : numéro + icône (compact, en ligne) */
.service-card .top {
  display: flex; flex-direction: row; align-items: center; gap: 10px;
  margin: 0; min-width: 0;
}
.service-card .num {
  font-size: 9px; font-weight: 700; color: var(--mint-dark);
  letter-spacing: 1.5px; line-height: 1;
  padding: 4px 8px; border-radius: var(--radius-pill);
  background: rgba(143,255,203,0.25); border: 1px solid rgba(58,212,142,0.35);
  white-space: nowrap;
}
.service-card .icon-wrap {
  width: 46px; height: 46px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  border: 1.5px solid rgba(58,212,142,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.45s cubic-bezier(0.22,1,0.36,1); flex-shrink: 0;
  position: relative; overflow: hidden;
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.9),
    0 2px 6px -2px rgba(58,212,142,0.18);
}
/* Reflet diagonal qui balaie l'icône au survol */
.service-card .icon-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.service-card:hover .icon-wrap, .service-card.expanded .icon-wrap {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-med) 100%);
  border-color: var(--mint-dark);
  transform: rotate(-6deg) scale(1.08);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.4),
    0 10px 24px -10px rgba(58,212,142,0.7);
}
.service-card:hover .icon-wrap::after, .service-card.expanded .icon-wrap::after { transform: translateX(120%); }
.service-card .icon-wrap svg { width: 22px; height: 22px; position: relative; z-index: 1; }

/* Colonne centrale : titre + tagline + zone dépliante */
.service-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 21px;
  font-weight: 700; color: var(--black); margin: 0; font-style: italic;
  line-height: 1.1; position: relative; display: inline-block;
  white-space: nowrap;
}
/* Stabilo mint droit qui surligne le titre au survol */
.service-card h3::before {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 0; height: 8px;
  background: var(--mint); opacity: 0.55; border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none; z-index: -1;
}
.service-card:hover h3::before, .service-card.expanded h3::before { transform: scaleX(1); }
.service-card .tagline {
  font-size: 11px; color: var(--mint-dark); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.3px; margin: 2px 0 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Zone dépliante : ul + lien — repliée par défaut, dépliée au survol */
.service-card ul {
  list-style: none; padding: 0; margin: 0;
  max-height: 0; min-height: 0; height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1),
              height 0.5s cubic-bezier(0.22,1,0.36,1),
              opacity 0.35s ease,
              margin 0.5s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover ul, .service-card.expanded ul {
  max-height: 220px; height: auto; opacity: 1;
  margin: 12px 0 6px;
}
.service-card ul li {
  position: relative; padding-left: 22px; font-size: 13.5px;
  line-height: 1.55; color: var(--gray); margin: 0;
  transform: translateY(-6px); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.service-card:hover ul li, .service-card.expanded ul li { transform: translateY(0); opacity: 1; }
.service-card:hover ul li:nth-child(1), .service-card.expanded ul li:nth-child(1) { transition-delay: 0.05s; }
.service-card:hover ul li:nth-child(2), .service-card.expanded ul li:nth-child(2) { transition-delay: 0.1s; }
.service-card:hover ul li:nth-child(3), .service-card.expanded ul li:nth-child(3) { transition-delay: 0.15s; }
.service-card:hover ul li:nth-child(4), .service-card.expanded ul li:nth-child(4) { transition-delay: 0.2s; }
.service-card ul li + li { margin-top: 4px; }
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 12px; height: 2px;
  background: var(--mint); border-radius: 2px; transition: width 0.3s;
}
.service-card:hover ul li::before, .service-card.expanded ul li::before { width: 16px; }

.service-card .service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 0; font-size: 11px; font-weight: 700;
  color: var(--mint-dark); letter-spacing: 1.5px; text-transform: uppercase;
  max-height: 0; min-height: 0; height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.4s ease, height 0.4s ease, opacity 0.35s ease 0.05s, gap 0.3s, color 0.3s;
}
.service-card .service-link::after { content: "→"; transition: transform 0.3s; }
.service-card:hover .service-link, .service-card.expanded .service-link {
  max-height: 30px; height: auto; opacity: 1;
  gap: 12px; color: var(--black);
  margin-top: 4px;
}

/* Colonne droite : prix */
.service-card .price {
  margin: 0; padding: 0; text-align: right; border: none;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 23px; font-weight: 700; line-height: 1; color: var(--black);
  min-width: 105px;
}
.service-card .price small {
  display: block; margin-bottom: 3px;
  font-family: 'Syne', sans-serif; font-style: normal;
  font-size: 9px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gray);
}
.service-card .price-number {
  position: relative; display: inline-block; padding: 0 6px; white-space: nowrap;
}
.service-card .price-number > span { position: relative; z-index: 1; }
.service-card .price-stabilo {
  position: absolute; left: -4%; bottom: 6%; width: 108%; height: 78%;
  z-index: 0; pointer-events: none; overflow: visible;
}
.service-card .price .period {
  font-family: 'Syne', sans-serif; font-style: normal;
  font-size: 11px; font-weight: 500; color: var(--gray); margin-left: 2px;
}

/* Décorations : sparkle (haut droit) + card-deco (forme rotative au repos) */
.service-card .sparkle {
  position: absolute; top: 50%; right: 130px; opacity: 0.3;
  margin-top: -11px;
  transition: opacity 0.4s, transform 0.4s; pointer-events: none;
  z-index: 0;
}
.service-card .sparkle svg { width: 16px; height: 16px; }
.service-card:hover .sparkle, .service-card.expanded .sparkle {
  opacity: 0.9; animation: spin 6s linear infinite;
}
.service-card .card-deco {
  position: absolute; top: 50%; right: 110px;
  margin-top: -16px; opacity: 0.14;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  transform: rotate(-12deg);
  z-index: 0;
}
.service-card .card-deco svg { width: 32px; height: 32px; }
.service-card:hover .card-deco, .service-card.expanded .card-deco {
  opacity: 0.32; transform: rotate(-22deg) scale(1.15);
}

/* ═══ PORTFOLIO ═══ */
.portfolio {
  padding: 120px clamp(20px, 5vw, 80px);
  background: var(--paper); position: relative; overflow: hidden;
}
/* Halo mint discret en haut à gauche */
.portfolio::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,255,203,0.3), transparent 65%);
  pointer-events: none;
}
.portfolio-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.portfolio-bg-deco { position: absolute; top: 40px; right: 5%; opacity: 0; transition: opacity 1s ease 0.3s; }
.portfolio-bg-deco.show { opacity: 0.15; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card {
  position: relative; overflow: hidden; cursor: pointer;
  transition: all 0.4s ease;
  border-radius: var(--radius-lg);
  display: block;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.25); }

/* Projets mis en avant : pleine largeur sur les 2 premiers */
.project-card.is-featured { grid-column: 1 / -1; }
.project-card.is-featured .project-card-inner { aspect-ratio: 21/9; padding: 44px 48px; }
.project-card.is-featured h3 { font-size: 44px; }
.project-card.is-featured .proj-tagline { font-size: 16px; max-width: 540px; }
@media (max-width: 768px) {
  .project-card.is-featured .project-card-inner { aspect-ratio: 4/3; padding: 28px; }
  .project-card.is-featured h3 { font-size: 28px; }
}

/* Badge "Nouveau" sur projets featured */
.proj-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: var(--mint); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px -4px rgba(58,212,142,0.6);
  position: relative; z-index: 3;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.project-card.has-cover .proj-badge {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
}

/* Tagline sous le titre */
.proj-tagline {
  font-size: 14px; line-height: 1.5; color: var(--gray);
  margin-top: 10px; max-width: 380px; font-style: italic;
}
.project-card.has-cover .proj-tagline { color: rgba(255,255,255,0.9); }
.project-card .proj-bar {
  position: absolute; top: 0; left: 0; height: 4px;
  background: var(--mint); width: 0%; transition: width 0.55s ease;
  border-radius: 0 var(--radius-lg) 0 0;
  z-index: 2;
}
.project-card:hover .proj-bar { width: 100%; }
.project-card-inner {
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  justify-content: space-between; padding: 32px;
  position: relative;
}
.project-card .type {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gray);
}
.project-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 30px;
  font-weight: 700; color: var(--black); margin-top: 6px; font-style: italic;
}
.project-card .proj-arrow {
  position: absolute; bottom: 22px; right: 22px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(20px); opacity: 0;
  transition: opacity 0.35s, transform 0.4s, background 0.35s;
}
.project-card:hover .proj-arrow { opacity: 1; transform: translateX(0); background: var(--mint); color: var(--black); }
.project-card .proj-cover {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.5s; z-index: 0;
}
.project-card.has-cover .proj-cover { opacity: 1; }
.project-card.has-cover .project-card-inner { background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%); position: relative; z-index: 1; }
.project-card.has-cover .type { color: rgba(255,255,255,0.85); }
.project-card.has-cover h3 { color: var(--white); }

/* ═══ APPROACH ═══ */
.approach {
  padding: 120px clamp(20px, 5vw, 80px); background: var(--black);
  position: relative; overflow: hidden;
}
.approach-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.approach .section-label span { color: var(--mint); }
.approach .section-title { color: var(--white); }
.approach-deco-1 { position: absolute; top: 10%; right: 6%; opacity: 0; transition: opacity 1s; }
.approach-deco-1.show { opacity: 0.2; }
.approach-deco-2 { position: absolute; bottom: 10%; left: 4%; opacity: 0; transition: opacity 1s ease 0.4s; }
.approach-deco-2.show { opacity: 0.15; }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0;
}
.step { padding: 40px 28px; }
.step + .step { border-left: 1px solid rgba(143,255,203,0.13); }
.step .step-num {
  font-size: 44px; font-weight: 800; color: rgba(143,255,203,0.19);
  display: block; margin-bottom: 16px; line-height: 1;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 700; color: var(--mint); margin-bottom: 12px; font-style: italic;
}
.step p { font-size: 14px; line-height: 1.75; color: #aaa; }
.step .step-line { margin-top: 20px; opacity: 0.4; }

/* ═══ STATS ═══ */
.stats {
  padding: 64px clamp(20px, 5vw, 80px); background: var(--mint); position: relative;
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px;
}
.stat { text-align: center; }
.stat .val {
  font-family: 'Cormorant Garamond', serif; font-size: 44px;
  font-weight: 700; color: var(--black); display: block; font-style: italic;
}
.stat .label {
  font-size: 12px; font-weight: 600; color: rgba(13,13,13,0.56);
  text-transform: uppercase; letter-spacing: 2px;
}
.stats-top-line {
  position: absolute; top: -3px; left: 0; width: 100%; height: 8px;
}

/* ═══ CONTACT ═══ */
.contact {
  padding: 120px clamp(20px, 5vw, 80px);
  background-color: var(--cream); position: relative; overflow: hidden;
}
/* Halo radial mint derrière le formulaire pour attirer l'œil */
.contact::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 720px; height: 720px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(143,255,203,0.24), transparent 60%);
  pointer-events: none; z-index: 0;
}
/* Triangle ouvert en bas à droite */
.contact::after {
  content: ''; position: absolute; bottom: 8%; right: 8%;
  width: 90px; height: 80px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 80'><path d='M 45 8 L 82 72 L 8 72 Z' fill='none' stroke='%235CEAA5' stroke-width='2.5' stroke-linejoin='round' opacity='0.45'/></svg>");
  background-repeat: no-repeat; background-size: contain;
  pointer-events: none; transform: rotate(12deg);
  animation: floaty 6s ease-in-out infinite;
}
.contact-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.contact-deco-1 { position: absolute; top: 60px; right: 8%; opacity: 0; transition: opacity 0.8s; }
.contact-deco-1.show { opacity: 0.2; }
.contact-deco-2 { position: absolute; bottom: 80px; left: 6%; opacity: 0; transition: opacity 0.8s ease 0.3s; }
.contact-deco-2.show { opacity: 0.15; }
.contact p.sub { font-size: 16px; color: var(--gray); margin-bottom: 52px; line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 16px 20px; border: 2px solid #ececec;
  background: var(--white); font-size: 15px; color: var(--black);
  outline: none; transition: border-color 0.3s, box-shadow 0.3s; width: 100%;
  border-radius: var(--radius);
}
.contact-form select { cursor: pointer; appearance: none; color: var(--gray);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 18px center;
  padding-right: 44px;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--mint); box-shadow: 0 0 0 4px rgba(143,255,203,0.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.success-msg {
  text-align: center; padding: 56px; border: 2px solid var(--mint);
  background: rgba(143,255,203,0.07); position: relative; display: none;
  border-radius: var(--radius-lg);
}
.success-msg.show { display: block; }
.success-msg .check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.success-msg h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-weight: 700; color: var(--black); font-style: italic; margin-bottom: 8px;
}
.success-msg p { font-size: 15px; color: var(--gray); }
.error-msg {
  background: #FFF0F0; border: 2px solid #FFB8B8; color: #B33A3A;
  padding: 14px 20px; border-radius: var(--radius); font-size: 14px;
  display: none; margin-top: 8px;
}
.error-msg.show { display: block; }

/* ═══ FOOTER ═══ */
.footer { background: var(--black); padding: 56px clamp(20px, 5vw, 80px) 40px; position: relative; }
.footer-top-line { position: absolute; top: 0; left: 0; width: 100%; height: 6px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.footer-logo .mp { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 28px; color: var(--white); font-style: italic; }
.footer-logo .com { font-size: 24px; color: var(--white); font-weight: 400; }
.footer-logo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); display: inline-block; margin-left: 3px; }
.footer-logo p { font-size: 14px; color: #888; font-style: italic; margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-cols { display: flex; gap: 48px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--mint); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: #888; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(143,255,203,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-bottom .socials { display: flex; gap: 12px; align-items: center; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(143,255,203,0.15);
  transition: all 0.3s; color: #888;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  background: var(--mint); color: var(--black); border-color: var(--mint);
  transform: translateY(-3px);
}
.admin-link {
  font-size: 11px; color: #444; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s; margin-left: 16px;
}
.admin-link:hover { color: var(--mint); }

/* ═══ POURQUOI MPCOM ═══ */
.why {
  padding: 70px clamp(20px, 5vw, 80px);
  background-color: var(--cream); position: relative; overflow: hidden;
  /* Motif de croix/plus mint répétés en grille pivotée */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g stroke='%235CEAA5' stroke-width='1.5' stroke-linecap='round' opacity='0.18'><line x1='40' y1='32' x2='40' y2='48'/><line x1='32' y1='40' x2='48' y2='40'/></g></svg>");
  background-size: 80px 80px;
}
/* Cercle décoratif gauche + petit cercle plein droite */
.why::before {
  content: ''; position: absolute; top: 50%; left: -90px; width: 220px; height: 220px;
  margin-top: -110px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><circle cx='110' cy='110' r='100' fill='none' stroke='%235CEAA5' stroke-width='2.5' opacity='0.35'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
}
.why::after {
  content: ''; position: absolute; top: 10%; right: 5%; width: 22px; height: 22px;
  background: var(--mint); border-radius: 50%; opacity: 0.55;
  pointer-events: none;
  box-shadow:
    -120px 60px 0 -6px rgba(92,234,165,0.5),
    -40px 220px 0 -4px rgba(143,255,203,0.6),
    80px 280px 0 -8px rgba(58,212,142,0.4);
}
.why-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px;
}
.why-card {
  padding: 22px 22px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.75); border: 2px solid rgba(58,212,142,0.18);
  transition: all 0.35s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; left: -20px; right: -20px; bottom: -10px; height: 16px;
  background-image: var(--serpentine-soft);
  background-size: 200px 16px; background-repeat: repeat-x;
  opacity: 0; transition: opacity 0.4s, bottom 0.4s;
  pointer-events: none;
}
.why-card:hover {
  background: var(--white); border-color: var(--mint); transform: translateY(-4px);
  box-shadow: 0 16px 36px -22px rgba(58,212,142,0.4);
}
.why-card:hover::before { opacity: 1; bottom: 4px; }
.why-card .why-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700;
  font-size: 36px; color: var(--mint-dark); line-height: 1; margin-bottom: 6px;
  display: block;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 19px;
  font-weight: 700; margin-bottom: 4px; line-height: 1.2;
}
.why-card p { font-size: 13px; line-height: 1.5; color: var(--gray); margin: 0; }

/* ═══ FAQ ═══ */
.faq {
  padding: 100px clamp(20px, 5vw, 80px);
  background: var(--paper); position: relative; overflow: hidden;
}
/* Gros point mint flouté en arrière-plan, juste pour la chaleur visuelle */
.faq::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,255,203,0.35), transparent 70%);
  pointer-events: none;
}
.faq-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid transparent; transition: border-color 0.3s;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--mint); }
.faq-item summary {
  padding: 22px 26px; font-weight: 600; font-size: 15px;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--black); transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--mint-dark);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--mint-dark); }
.faq-item .answer {
  padding: 0 26px 22px; font-size: 14px; line-height: 1.75; color: var(--gray);
}

/* ═══ LANDING PAGE (services dédiés) ═══ */
.landing-page { padding-top: 70px; }
.landing-hero {
  padding: 80px clamp(20px, 5vw, 80px) 60px;
  background: var(--light); position: relative; overflow: hidden;
}
.landing-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.landing-kicker {
  display: inline-block; padding: 6px 16px; background: var(--mint); color: var(--black);
  border-radius: var(--radius-pill); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 24px;
}
.landing-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(40px, 7vw, 80px); font-weight: 700; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 20px;
}
.landing-hero h1 .accent { color: var(--mint-dark); }
.landing-hero .lead {
  font-size: clamp(15px, 2vw, 19px); color: var(--gray); line-height: 1.7;
  max-width: 700px; margin: 0 auto 36px;
}
.landing-hero .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.landing-section { padding: 80px clamp(20px, 5vw, 80px); }
.landing-section.alt { background: var(--light); }
.landing-section.dark { background: var(--black); color: var(--white); }
.landing-section.dark h2, .landing-section.dark h3 { color: var(--white); }
.landing-section.dark p, .landing-section.dark li { color: #ccc; }
.landing-section-inner { max-width: 1000px; margin: 0 auto; }
.landing-section h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700;
  font-size: clamp(32px, 4.5vw, 48px); line-height: 1.1; margin-bottom: 32px;
}
.landing-section h2 .accent { color: var(--mint-dark); }
.landing-section p { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 16px; }
.landing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px;
}
.landing-block {
  padding: 28px; background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid transparent; transition: all 0.35s;
}
.landing-section.alt .landing-block { background: var(--white); }
.landing-section.dark .landing-block { background: rgba(255,255,255,0.04); border-color: rgba(143,255,203,0.15); }
.landing-block:hover { border-color: var(--mint); transform: translateY(-3px); }
.landing-block h3 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; margin-bottom: 12px; line-height: 1.2;
}
.landing-block p, .landing-block li { font-size: 14px; line-height: 1.7; color: var(--gray); }
.landing-block .price-tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700;
  font-size: 26px; color: var(--black); margin-bottom: 8px;
  display: block;
}
.landing-list {
  list-style: none; padding: 0; margin-top: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px;
}
.landing-list li {
  position: relative; padding-left: 24px; font-size: 15px; line-height: 1.6;
}
.landing-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 2px;
  background: var(--mint); border-radius: 2px;
}
.landing-cta {
  padding: 80px clamp(20px, 5vw, 80px); background: var(--mint); text-align: center;
}
.landing-cta h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px;
}
.landing-cta p { font-size: 16px; color: rgba(13,13,13,0.7); margin-bottom: 32px; }
.landing-related {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 32px;
}
.landing-related a {
  padding: 18px 22px; background: var(--white); border-radius: var(--radius);
  border: 2px solid transparent; transition: all 0.3s;
  font-size: 13px; font-weight: 600;
}
.landing-related a:hover { border-color: var(--mint); transform: translateY(-2px); }
.landing-related a::after { content: " →"; color: var(--mint-dark); }

/* Zones d'intervention */
.landing-zones { text-align: center; }
.landing-zones h2 { max-width: 800px; margin-left: auto; margin-right: auto; }
.landing-zones p { max-width: 640px; margin: 0 auto; }
.cities-list {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  max-width: 800px; margin: 36px auto 0;
}
.cities-list .city {
  padding: 8px 16px; background: var(--white);
  border: 1.5px solid rgba(143,255,203,0.4);
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600;
  color: var(--gray); transition: all 0.25s; cursor: default;
}
.cities-list .city:hover {
  background: var(--mint); color: var(--black); border-color: var(--mint);
  transform: translateY(-2px);
}
.cities-list .city.primary { background: var(--mint); color: var(--black); border-color: var(--mint); }

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

/* ═══ LEGAL PAGES (mentions, confidentialité) ═══ */
.legal-page { padding-top: 70px; }
.legal-hero {
  padding: 64px clamp(20px, 5vw, 80px) 32px;
  background: var(--light); text-align: center;
}
.legal-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(40px, 6vw, 64px); margin: 16px 0 12px; line-height: 1.05;
}
.legal-hero .legal-update { font-size: 13px; color: var(--gray); }
.legal-body {
  max-width: 800px; margin: 0 auto; padding: 56px clamp(20px, 5vw, 80px);
}
.legal-body section { margin-bottom: 44px; }
.legal-body h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 26px; margin-bottom: 16px; line-height: 1.2;
  padding-bottom: 8px; border-bottom: 2px solid rgba(143,255,203,0.4);
}
.legal-body p, .legal-body li, .legal-body dd {
  font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 12px;
}
.legal-body a { color: var(--mint-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--black); }
.legal-body strong { color: var(--black); }
.legal-list { list-style: none; padding: 0; margin: 12px 0; }
.legal-list li {
  position: relative; padding-left: 22px; margin-bottom: 10px;
}
.legal-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 2px; background: var(--mint); border-radius: 2px;
}
.legal-dl { margin: 16px 0; }
.legal-dl dt {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--mint-dark); margin-top: 14px;
}
.legal-dl dd {
  margin-left: 0; padding-left: 0; font-size: 15px; line-height: 1.7;
}

/* ═══ 404 PAGE ═══ */
.error-page {
  min-height: calc(100vh - 70px);
  padding: 100px clamp(20px, 5vw, 80px) 80px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.error-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(143,255,203,0.19) 1.5px, transparent 1.5px);
  background-size: 48px 48px; opacity: 0.5;
}
.error-floats { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.error-float { position: absolute; opacity: 0.55; animation: floaty 5s ease-in-out infinite; }
.error-float.ef1 { top: 14%; left: 10%; }
.error-float.ef2 { top: 22%; right: 14%; animation-delay: 0.6s; }
.error-float.ef3 { bottom: 20%; left: 12%; animation-delay: 1.2s; }
.error-float.ef4 { bottom: 16%; right: 10%; animation-delay: 0.3s; }
.error-inner {
  position: relative; z-index: 1; text-align: center; max-width: 720px;
}
.error-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(120px, 22vw, 240px); font-weight: 700;
  line-height: 0.9; letter-spacing: -8px;
  background: linear-gradient(135deg, var(--black) 0%, var(--mint-dark) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 16px 0 8px;
}
.error-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  line-height: 1.15; margin-bottom: 16px;
}
.error-title .accent { color: var(--mint-dark); }
.error-sub {
  font-size: clamp(14px, 1.6vw, 17px); color: var(--gray);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto;
}
.error-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px;
}
.error-suggestions { margin-top: 40px; }
.suggest-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mint-dark); margin-bottom: 16px;
}
.suggest-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px; max-width: 720px; margin: 0 auto;
}
.suggest-grid a {
  padding: 14px 18px; background: var(--white);
  border: 2px solid #eee; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; transition: all 0.3s;
}
.suggest-grid a::after { content: " →"; color: var(--mint-dark); }
.suggest-grid a:hover { border-color: var(--mint); transform: translateY(-2px); }

/* ═══ COOKIE BANNER ═══ */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 9999; max-width: 760px; margin: 0 auto;
  background: var(--black); color: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(143,255,203,0.25);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,0.5);
  padding: 18px 22px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 220px; }
.cookie-text strong {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--mint); display: block; margin-bottom: 4px;
}
.cookie-text p { font-size: 13px; line-height: 1.55; color: #ccc; }
.cookie-text a { color: var(--mint); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 8px; }
.btn-cookie {
  padding: 10px 18px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: all 0.25s; font-family: 'Syne', sans-serif;
}
.btn-cookie.primary { background: var(--mint); color: var(--black); border-color: var(--mint); }
.btn-cookie.primary:hover { background: var(--mint-med); border-color: var(--mint-med); }
.btn-cookie.ghost { background: transparent; color: #ccc; border-color: rgba(255,255,255,0.18); }
.btn-cookie.ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}

/* ═══ PROJECT PAGE V2 — design enrichi ═══ */
.project-page { padding-top: 70px; min-height: 100vh; }

/* HERO */
.proj-hero {
  position: relative; min-height: 70vh; padding: 80px clamp(20px, 5vw, 80px) 100px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.proj-hero.has-cover { color: var(--white); min-height: 80vh; }
.proj-hero.has-cover .proj-hero-tagline { color: rgba(255,255,255,0.85); }
.proj-hero.has-cover .proj-tag.ghost { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
/* CTA secondaire ("Voir le site live") sur cover sombre : texte blanc + bord mint */
.proj-hero.has-cover .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}
.proj-hero.has-cover .btn-secondary:hover {
  color: var(--black);
  background: var(--mint);
  border-color: var(--mint);
}
/* Bouton primaire ("Voir sur Figma") sur cover : variante mint plus lisible */
.proj-hero.has-cover .btn-primary {
  background: var(--mint); color: var(--black); border-color: var(--mint);
}
.proj-hero.has-cover .btn-primary:hover {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.proj-hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.proj-hero-deco .hero-deco-1 { position: absolute; top: 18%; right: 8%; opacity: 0.3; animation: floaty 5s ease-in-out infinite; }
.proj-hero-deco .hero-deco-2 { position: absolute; bottom: 20%; left: 6%; opacity: 0.25; animation: floaty 6s ease-in-out 1s infinite; }
.proj-hero-inner {
  position: relative; z-index: 2; max-width: 1100px; width: 100%; margin: 0 auto;
}
.project-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 32px; transition: color 0.25s, gap 0.25s;
}
.project-back:hover { color: var(--mint-dark); gap: 12px; }
.project-back.on-cover { color: rgba(255,255,255,0.85); }
.project-back.on-cover:hover { color: var(--mint); }
.proj-hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.proj-tag {
  padding: 7px 16px; background: var(--mint); color: var(--black);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: var(--radius-pill);
  border: 2px solid var(--mint);
}
.proj-tag.ghost { background: transparent; color: var(--gray); border-color: rgba(0,0,0,0.15); }
.proj-hero-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700;
  font-size: clamp(54px, 9vw, 128px); line-height: 0.95; letter-spacing: -3px;
  margin-bottom: 24px; color: inherit;
}
.proj-hero-tagline {
  font-size: clamp(16px, 2vw, 22px); color: var(--gray); font-style: italic;
  max-width: 720px; line-height: 1.55; margin-bottom: 36px;
}
.proj-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.proj-hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 36px; border: 2px solid rgba(255,255,255,0.6); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px; z-index: 3;
}
.proj-hero-scroll span {
  width: 3px; height: 8px; background: var(--mint); border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

/* META STRIP */
.proj-meta-strip { background: var(--black); color: var(--white); padding: 32px clamp(20px, 5vw, 80px); }
.proj-meta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px;
}
.meta-cell { display: flex; flex-direction: column; gap: 6px; }
.meta-cell .meta-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--mint);
}
.meta-cell .meta-value {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; font-weight: 700; line-height: 1.2; color: var(--white);
}
.meta-pill {
  display: inline-block; padding: 4px 12px; background: rgba(143,255,203,0.12);
  color: var(--mint); border: 1px solid rgba(143,255,203,0.3); border-radius: var(--radius-pill);
  font-family: 'Syne', sans-serif; font-style: normal; font-size: 11px;
  font-weight: 600; letter-spacing: 1px; margin: 2px 4px 2px 0;
}

/* BLOCKS — alternés */
.proj-blocks { padding: 100px clamp(20px, 5vw, 80px); max-width: 1100px; margin: 0 auto; }
.proj-block {
  display: grid; grid-template-columns: 280px 1fr; gap: 60px;
  padding: 60px 0; border-top: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.proj-block:first-child { border-top: none; padding-top: 0; }
.proj-block.alt { grid-template-columns: 1fr 280px; }
.proj-block.alt .proj-block-meta { order: 2; text-align: right; }
.proj-block.alt .proj-block-content { order: 1; }
.proj-block-meta { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 100px; }
.proj-block-meta .block-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 80px; font-weight: 700; line-height: 0.9;
  color: var(--mint-dark); opacity: 0.85;
}
.proj-block-meta .block-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gray);
}
.proj-block-meta .block-deco { opacity: 0.5; margin-top: 8px; }
.proj-block.alt .block-deco { align-self: flex-end; }
.proj-block-content h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px); line-height: 1.1; margin-bottom: 20px;
}
.proj-block-content p {
  font-size: clamp(15px, 1.8vw, 18px); line-height: 1.8; color: #444;
}

/* GALLERY V2 */
.proj-gallery { padding: 80px clamp(20px, 5vw, 80px); background: var(--light); }
.proj-gallery-head { max-width: 1200px; margin: 0 auto 48px; text-align: center; }
.section-kicker {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--mint-dark); margin-bottom: 12px;
}
.proj-gallery-head h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.1;
}
.proj-gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 220px; gap: 12px; grid-auto-flow: dense;
}
.gallery-tile {
  background: transparent; border: none; padding: 0; cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; position: relative;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.gallery-tile.wide { grid-column: span 2; }
.gallery-tile.tall { grid-row: span 2; }
.gallery-tile-img {
  display: block; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.gallery-tile:hover { transform: translateY(-3px); }
.gallery-tile:hover .gallery-tile-img { transform: scale(1.05); }
.gallery-tile::after {
  content: "⤢"; position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; background: rgba(13,13,13,0.7); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; font-size: 14px;
}
.gallery-tile:hover::after { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; background: rgba(13,13,13,0.95);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; padding: 32px;
}
.lightbox.show { display: flex; }
.lb-img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: var(--radius); }
.lightbox button {
  position: absolute; background: rgba(255,255,255,0.1); color: white;
  border: 2px solid rgba(255,255,255,0.25); width: 48px; height: 48px;
  border-radius: 50%; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; backdrop-filter: blur(4px);
}
.lightbox button:hover { background: var(--mint); color: var(--black); border-color: var(--mint); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }

/* NEXT PROJECT */
.proj-next {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh;
  background: var(--black); color: var(--white);
}
.proj-next-inner {
  padding: 80px clamp(20px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.proj-next-inner .section-kicker { color: var(--mint); margin-bottom: 8px; }
.proj-next-inner h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 700;
  font-size: clamp(48px, 7vw, 88px); line-height: 1; letter-spacing: -2px; color: var(--white);
}
.proj-next-inner p { font-size: 16px; color: #aaa; line-height: 1.6; max-width: 480px; }
.proj-next-inner a { margin-top: 16px; align-self: flex-start; }
.proj-next-cover {
  background-size: cover; background-position: center;
  min-height: 60vh; transition: transform 0.6s;
}
.proj-next-cover.empty {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 200px; color: rgba(13,13,13,0.15);
}
.proj-next:hover .proj-next-cover { transform: scale(1.02); }

/* Old project page styles (kept for backward compat) */
.project-not-found {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 80px 20px;
  text-align: center; gap: 24px;
}
.project-not-found h1 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 56px; }
.project-not-found p { color: var(--gray); }

@media (max-width: 1024px) {
  .proj-block, .proj-block.alt {
    grid-template-columns: 1fr; gap: 24px;
  }
  .proj-block.alt .proj-block-meta { order: 1; text-align: left; }
  .proj-block.alt .proj-block-content { order: 2; }
  .proj-block-meta { position: static; flex-direction: row; align-items: center; gap: 20px; }
  .proj-block-meta .block-num { font-size: 56px; }
  .proj-block.alt .block-deco { align-self: auto; }
  .proj-next { grid-template-columns: 1fr; }
  .proj-next-cover { min-height: 320px; order: -1; }
}

@media (max-width: 768px) {
  .proj-hero { min-height: auto; padding: 64px 20px 60px; }
  .proj-hero.has-cover { min-height: 60vh; }
  .proj-meta-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .proj-blocks { padding: 60px 20px; }
  .proj-block { padding: 40px 0; }
  .proj-gallery { padding: 60px 20px; }
  .proj-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-tile.wide, .gallery-tile.tall { grid-column: auto; grid-row: auto; }
  .lb-prev, .lb-next { width: 44px; height: 44px; }
  .proj-next-inner { padding: 60px 20px; }
  .proj-next-inner h2 { font-size: 44px; }
}

/* ═══ ANCIENNE PROJECT PAGE V1 (gardée par sécurité, plus utilisée) ═══ */
.project-hero {
  padding: 80px clamp(20px, 5vw, 80px) 60px; position: relative; overflow: hidden;
  text-align: center;
}
.project-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.project-back {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px;
  color: var(--gray); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 32px; transition: color 0.2s;
}
.project-back:hover { color: var(--mint-dark); }
.project-meta {
  display: inline-flex; align-items: center; gap: 16px; margin-bottom: 24px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2.5px;
}
.project-meta .badge {
  padding: 6px 14px; background: var(--mint); color: var(--black);
  border-radius: var(--radius-pill);
}
.project-meta .year { color: var(--gray); }
.project-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 8vw, 96px);
  font-weight: 700; font-style: italic; line-height: 1; letter-spacing: -2px;
  margin-bottom: 24px;
}
.project-tagline {
  font-size: clamp(16px, 2vw, 20px); color: var(--gray); font-style: italic;
  max-width: 600px; margin: 0 auto 40px; line-height: 1.6;
}
.project-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.project-cover {
  max-width: 1200px; margin: 0 auto 80px; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg);
}
.project-cover.empty {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 80px; font-style: italic;
  color: rgba(13,13,13,0.15);
}
.project-blocks {
  max-width: 900px; margin: 0 auto 100px;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.project-block {
  padding: 32px 28px; background: var(--light); border-radius: var(--radius-lg);
  border: 2px solid transparent; transition: all 0.35s;
}
.project-block:hover { border-color: var(--mint); background: var(--white); }
.project-block .block-label {
  font-size: 11px; font-weight: 700; color: var(--mint-dark);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.project-block h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 700; font-style: italic; margin-bottom: 14px; line-height: 1.2;
}
.project-block p { font-size: 14px; line-height: 1.75; color: var(--gray); }
.project-gallery {
  max-width: 1200px; margin: 0 auto 100px;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px;
}
.project-gallery-item {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.4s;
}
.project-gallery-item:hover { transform: scale(1.02); }
.project-next {
  background: var(--black); padding: 80px clamp(20px, 5vw, 80px);
  text-align: center; color: var(--white);
}
.project-next .next-label {
  font-size: 11px; color: var(--mint); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px;
}
.project-next h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 56px);
  font-style: italic; margin-bottom: 24px;
}
.project-not-found {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 80px 20px;
  text-align: center; gap: 24px;
}
.project-not-found h1 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 56px; }
.project-not-found p { color: var(--gray); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .project-blocks { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 24px; }
}

@media (max-width: 768px) {
  /* Burger nav */
  .nav-burger { display: block; }
  .nav { padding: 0 20px; height: 64px; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    padding: 16px;
    border-bottom: 2px solid rgba(143,255,203,0.4);
    box-shadow: 0 16px 32px -16px rgba(0,0,0,0.15);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s;
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a {
    padding: 14px 16px; border-radius: var(--radius); font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; text-align: center; }

  /* Layouts */
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step + .step { border-left: none; }
  .footer-cols { flex-direction: column; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .landing-grid { grid-template-columns: 1fr; }
  .project-cover { margin-bottom: 40px; aspect-ratio: 4/3; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Hero adjustments */
  .hero { padding: 80px 20px 40px; min-height: auto; }
  .hero-title { letter-spacing: -2px; }
  .hero-buttons { gap: 12px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; max-width: 320px; }

  /* Sections spacing */
  .services, .portfolio, .approach, .contact, .why, .faq { padding: 70px 20px; }

  /* Service card : empilage vertical sur mobile (icône en haut, prix en bas) */
  .service-card {
    grid-template-columns: 1fr;
    gap: 12px; padding: 18px 20px;
  }
  .service-card:hover, .service-card.expanded { padding: 20px 20px; transform: translateX(0); }
  .service-card::before { display: none; }
  .service-card .top,
  .service-card h3,
  .service-card .tagline,
  .service-card ul,
  .service-card .service-link,
  .service-card .price {
    grid-column: 1; grid-row: auto; align-self: auto;
  }
  .service-card .top {
    flex-direction: row; justify-content: flex-start; align-items: center;
    min-width: 0; width: 100%; gap: 14px;
  }
  .service-card .num {
    writing-mode: horizontal-tb; transform: none;
    border-left: none; border-bottom: 2px solid var(--mint);
    padding: 0 0 4px;
  }
  .service-card .price {
    text-align: left; min-width: 0;
    padding-top: 14px; border-top: 1px dashed rgba(58,212,142,0.3);
    font-size: 26px;
  }
  .service-card .price small { display: inline-block; margin-right: 8px; }
  .service-card .card-deco { right: -12px; }

  /* Project page */
  .project-blocks { padding: 0 20px; }
  .project-actions { flex-direction: column; align-items: stretch; }
  .project-actions a { width: 100%; }

  /* Landing page */
  .landing-hero { padding: 64px 20px 40px; }
  .landing-section { padding: 56px 20px; }
  .landing-list { grid-template-columns: 1fr; }
  .landing-cta { padding: 56px 20px; }

  /* Stats */
  .stats { padding: 48px 20px; }
  .stats-inner { gap: 24px; }
  .stat .val { font-size: 36px; }

  /* Steps tighter */
  .step { padding: 32px 20px; }
  .step .step-num { font-size: 36px; }

  /* Page legal & 404 */
  .legal-body { padding: 40px 20px; }
  .error-page { padding: 80px 20px 60px; }
  .error-num { letter-spacing: -4px; }
  .error-actions { flex-direction: column; align-items: stretch; }
  .error-actions a { width: 100%; }

  /* Buttons full-width on small CTA areas */
  .landing-cta .btn-primary { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .nav-logo .mp { font-size: 22px; }
  .nav-logo .com { font-size: 18px; }
  .section-title { margin-bottom: 40px; }
  .stats-inner { gap: 18px; }
  .stat { flex: 1 1 45%; }
}
