/* ═══════════════════════════════════════════════════════════════════
   LES JARDINS DE L'ATELIER — Sylvie Grenet
   Céramique raku · Bourdeau, Savoie
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Palette rouge raku */
  --primary: #B23A2A;
  --primary-dark: #6B1F18;
  --primary-light: #E89887;
  --primary-soft: #F4D9D2;

  /* Or cuivré (effets métalliques raku) */
  --or: #C9A961;
  --or-dark: #A88840;
  --or-light: #E8D4A0;

  /* Vert sauge (jardin) */
  --vert: #7A8B6E;
  --vert-dark: #4F5E45;

  /* Neutres chaleureux */
  --creme: #F5EDE2;
  --creme-dark: #E8DDC9;
  --noir: #1A1410;
  --noir-soft: #2D2218;

  /* Texte */
  --text: #2D1F18;
  --text-light: #6E5544;
  --text-muted: #998877;

  /* Ombres */
  --shadow-soft: 0 4px 24px rgba(178, 58, 42, 0.08);
  --shadow-medium: 0 12px 48px rgba(107, 31, 24, 0.12);
  --shadow-strong: 0 24px 80px rgba(107, 31, 24, 0.25);
  --shadow-or: 0 8px 32px rgba(201, 169, 97, 0.3);

  /* Easings */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);

  /* Tokens */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 32px;
  --container: 1280px;
  --nav-h: 78px;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--creme);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }
::selection { background: var(--primary); color: var(--creme); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--creme-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--primary-dark)); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Texture grain cinéma */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* ═══ TYPOGRAPHIE ═══ */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--noir);
}

em {
  font-style: italic;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.label--accent { color: var(--primary-dark); }
.label--accent::before { background: linear-gradient(90deg, var(--or), transparent); }
.label--gold { color: var(--or); }
.label--gold::before { background: linear-gradient(90deg, var(--or), transparent); }

/* ═══ LAYOUT ═══ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

section {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
}

.section__header {
  text-align: left;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 760px;
}
.section__header .label { justify-content: flex-start; }
.section__title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.section__title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__header.reveal { margin-left: auto; margin-right: auto; }
.section__header .section__title--center { text-align: center; }
.section__title--light { color: var(--creme); }
.section__title--light em { color: var(--or-light); }
.section__intro {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.section__title--center + .section__intro { text-align: center; }

/* ═══ BOUTONS ═══ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease-smooth); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--creme);
  box-shadow: 0 8px 24px rgba(178, 58, 42, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(178, 58, 42, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--primary:hover::before { opacity: 1; }

.btn--outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--creme);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn--small {
  padding: 0.7rem 1.3rem;
  font-size: 0.85rem;
}

/* Glow cursor */
.btn--glow::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 180, 0.35) 0%, transparent 60%);
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: -1;
}
.btn--glow:hover::after { opacity: 1; }

/* Lien fancy */
.link-fancy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.link-fancy svg { width: 16px; height: 16px; }
.link-fancy::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--primary);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.4s var(--ease-out-expo);
}
.link-fancy:hover::after {
  transform-origin: left;
  animation: linkUnderline 0.6s var(--ease-out-expo);
}
@keyframes linkUnderline {
  0% { transform: scaleX(1); transform-origin: right; }
  50% { transform: scaleX(0); transform-origin: right; }
  51% { transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.5s var(--ease-smooth);
  background: transparent;
}
.nav--scrolled {
  background: rgba(245, 237, 226, 0.85);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 2px 20px rgba(107, 31, 24, 0.08);
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  transition: transform 0.4s var(--ease-smooth);
}
.nav__logo:hover { transform: scale(1.03); }
.nav__logo-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 4px 12px rgba(178, 58, 42, 0.3));
  transition: transform 0.5s var(--ease-elastic);
}
.nav__logo:hover .nav__logo-mark { transform: rotate(-12deg) scale(1.1); }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-line1 {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.nav__logo-line2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--noir);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.nav__link {
  position: relative;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
  overflow: hidden;
}
.nav__link span { position: relative; z-index: 1; }
.nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--or));
  transition: all 0.4s var(--ease-out-expo);
  transform: translateX(-50%);
}
.nav__link:hover { color: var(--primary); }
.nav__link:hover::before { width: 60%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary-dark);
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease-smooth);
}
.nav__icon svg { width: 18px; height: 18px; }
.nav__icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 58, 42, 0.2);
}

.nav__cta { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
.nav__cta svg { width: 14px; height: 14px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--noir);
  border-radius: 2px;
  transition: all 0.4s var(--ease-elastic);
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 6rem;
  background:
    radial-gradient(ellipse 60% 50% at 18% 22%, rgba(232, 152, 135, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 82% 78%, rgba(201, 169, 97, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(178, 58, 42, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(244, 217, 210, 0.5) 0%, transparent 60%),
    linear-gradient(160deg, #FBF5EC 0%, var(--creme) 45%, #EFDEC9 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(232, 152, 135, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(201, 169, 97, 0.10) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
  animation: heroBgDrift 18s ease-in-out infinite alternate;
}
@keyframes heroBgDrift {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(20px, -15px) scale(1.05); opacity: 1; }
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
}

.hero__ornament {
  position: absolute;
  height: 90vh;
  width: 200px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
.hero__ornament--left { left: -40px; bottom: 0; }
.hero__ornament--right { right: -40px; bottom: 0; transform: scaleX(-1); }
.hero__ornament svg { width: 100%; height: 100%; }

.flame-path { transform-origin: 50% 100%; }
.flame-path--1 { animation: flameDance 6s ease-in-out infinite; }
.flame-path--2 { animation: flameDance 4s ease-in-out infinite reverse; }
.flame-path--3 { animation: flameDance 7s ease-in-out infinite; }
@keyframes flameDance {
  0%, 100% { transform: scaleY(1) skewX(0deg); }
  25% { transform: scaleY(1.05) skewX(-2deg); }
  50% { transform: scaleY(0.95) skewX(2deg); }
  75% { transform: scaleY(1.02) skewX(-1deg); }
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(232, 152, 135, 0.3) 0%, rgba(232, 152, 135, 0.1) 30%, transparent 60%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero__sculpture {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 32vw, 480px);
  height: auto;
  z-index: 2;
  opacity: 0;
  animation: heroSculptureIn 1.6s var(--ease-out-expo) 0.8s forwards;
  filter: drop-shadow(0 30px 60px rgba(107, 31, 24, 0.35));
}
@keyframes heroSculptureIn {
  from { opacity: 0; transform: translateY(-40%) scale(0.9); }
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* Particules flottantes */
.hero__particles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.particle {
  position: absolute;
  width: 14px;
  height: 14px;
  filter: blur(0.5px) drop-shadow(0 0 8px currentColor);
}
.particle--1 { top: 20%; left: 15%; animation: floatY 8s ease-in-out infinite; }
.particle--2 { top: 60%; left: 25%; animation: floatY 10s ease-in-out infinite -2s; }
.particle--3 { top: 30%; left: 70%; animation: floatY 7s ease-in-out infinite -4s; }
.particle--4 { top: 70%; left: 80%; animation: floatY 9s ease-in-out infinite -1s; }
.particle--5 { top: 45%; left: 50%; animation: floatY 11s ease-in-out infinite -3s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-40px) translateX(20px) scale(1.2); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: 100%;
}
.hero__label {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s var(--ease-out-expo) 0.3s forwards;
}
.hero__title {
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroIn 1.2s var(--ease-out-expo) forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 0.5s; }
.hero__title-line:nth-child(2) { animation-delay: 0.7s; }
.hero__title-line:nth-child(3) { animation-delay: 0.9s; }
.hero__title-italic {
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
  display: inline-block;
  position: relative;
}
.hero__title-italic::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.06em;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 1.5s var(--ease-out-expo) 1.4s forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
.hero__title-line--accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--or) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 500;
}

.hero__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: heroIn 1s var(--ease-out-expo) 1.1s forwards;
}
.hero__signature {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroIn 1s var(--ease-out-expo) 1.3s forwards;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 1s var(--ease-out-expo) 1.5s forwards;
}

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

.hero__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroIn 1s var(--ease-out-expo) 2s forwards, scrollBounce 2s ease-in-out 3s infinite;
  color: var(--text-light);
}
.hero__scroll svg { width: 18px; height: 18px; }
.hero__scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 4;
  pointer-events: none;
}
.hero__wave svg { width: 100%; height: 100%; }
.wave-path { transform-origin: center; }
.wave-path--1 { animation: wave 12s ease-in-out infinite; }
.wave-path--2 { animation: wave 10s ease-in-out infinite -2s; }
.wave-path--3 { animation: wave 8s ease-in-out infinite -4s; }
@keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 1s var(--ease-out-expo);
}
.reveal { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: translate(0);
}

/* ═══ SECTION SYLVIE ═══ */
.sylvie {
  background: linear-gradient(180deg, var(--creme) 0%, #FAF3E8 100%);
  position: relative;
}
.sylvie__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.sylvie__visual { position: relative; }
.sylvie__photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
}
.sylvie__photo-bg {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.95;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-strong);
}
.sylvie__photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  z-index: 2;
  filter: contrast(1.05) saturate(0.95);
  transform: rotate(1deg);
  transition: transform 0.6s var(--ease-smooth);
  box-shadow: var(--shadow-medium);
}
.sylvie__photo-frame:hover .sylvie__photo { transform: rotate(0deg) scale(1.02); }
.sylvie__photo-decoration {
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: -40px;
  right: -40px;
  z-index: 3;
  animation: rotate 30s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.sylvie__stats {
  display: flex;
  justify-content: space-around;
  margin-top: 4rem;
  gap: 1rem;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--or);
}
.stat-item__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
}
.stat-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.sylvie__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--noir);
  margin-bottom: 2rem;
  max-width: 600px;
}
.sylvie__story {
  margin-bottom: 3rem;
}
.sylvie__story p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  max-width: 580px;
}
.dropcap {
  float: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4em;
  line-height: 0.85;
  padding-right: 0.1em;
  padding-top: 0.05em;
  color: var(--primary);
  font-weight: 500;
}

.sylvie__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.feature-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  border: 1px solid rgba(178, 58, 42, 0.1);
  transition: all 0.4s var(--ease-smooth);
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(178, 58, 42, 0.25);
}
.feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), var(--creme));
  color: var(--primary-dark);
  border: 1px solid rgba(178, 58, 42, 0.2);
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--noir);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ═══ SECTION FÉES ═══ */
.fees {
  background: linear-gradient(180deg, #FAF3E8 0%, var(--creme) 100%);
  position: relative;
  overflow: hidden;
}
.fees__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.fees__backdrop-svg { width: 100%; height: 100%; opacity: 0.5; }
.fees .container { position: relative; z-index: 1; }
.fees .section__header { text-align: center; margin-left: auto; margin-right: auto; }
.fees .section__header .label { justify-content: center; }
.fees .section__header .label::before { display: none; }

.fees__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 480px;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .fees__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 600px) {
  .fees__grid { grid-template-columns: 1fr; }
}

.fee-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  transition: all 0.6s var(--ease-out-expo);
  background: var(--creme-dark);
  isolation: isolate;
}
.fee-card--large { grid-row: span 1; }
.fee-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.fee-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.fee-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-smooth);
  filter: saturate(0.95);
}
.fee-card:hover .fee-card__image img { transform: scale(1.08); }

.fee-card__overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}
.fee-card__crown {
  width: 50px;
  height: 26px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.6s var(--ease-elastic) 0.1s;
}
.fee-card:hover .fee-card__crown {
  opacity: 1;
  transform: translateY(0);
}

.fee-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.95) 0%, rgba(26, 20, 16, 0.7) 50%, transparent 100%);
  color: var(--creme);
  z-index: 1;
}
.fee-card__season {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--or-light);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.fee-card__name {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--creme);
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-style: italic;
}
.fee-card__power {
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(245, 237, 226, 0.9);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s var(--ease-smooth);
  max-height: 0;
  overflow: hidden;
}
.fee-card:hover .fee-card__power {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
  margin-top: 0.4rem;
}

/* Family items */
.fees__family {
  text-align: center;
  margin-top: 3rem;
}
.fees__family-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 3rem;
}
.family-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.family-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease-smooth);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(178, 58, 42, 0.08);
}
.family-item:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(178, 58, 42, 0.25);
}
.family-item__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  transition: transform 0.5s var(--ease-elastic);
}
.family-item:hover .family-item__icon { transform: rotate(-8deg) scale(1.1); }
.family-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--noir);
  font-weight: 600;
}
.family-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ═══ SECTION RAKU ═══ */
.raku {
  background: linear-gradient(135deg, var(--noir) 0%, #2a1a14 50%, var(--primary-dark) 100%);
  color: var(--creme);
  position: relative;
  overflow: hidden;
}
.raku__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}
.raku::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(232, 152, 135, 0.1) 0%, transparent 50%);
  z-index: 1;
}
.raku .container { position: relative; z-index: 2; }
.raku__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.raku .label--gold { color: var(--or-light); }
.raku .label--gold::before { background: linear-gradient(90deg, var(--or-light), transparent); }

.raku__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--creme);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}
.raku__lead strong {
  color: var(--or-light);
  font-weight: 500;
  font-style: normal;
}
.raku__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 237, 226, 0.8);
}
.raku__text strong { color: var(--or-light); }

/* Raku steps */
.raku__steps {
  position: relative;
  padding-left: 0;
}
.raku-step {
  position: relative;
  padding-left: 4.5rem;
  padding-bottom: 2.5rem;
}
.raku-step:last-child { padding-bottom: 0; }
.raku-step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--or-dark) 100%);
  color: var(--creme);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
  z-index: 2;
}
.raku-step__line {
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--or), transparent);
  opacity: 0.4;
}
.raku-step__content {
  padding-top: 0.4rem;
}
.raku-step h3 {
  font-size: 1.4rem;
  color: var(--creme);
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-style: italic;
}
.raku-step p {
  font-size: 0.95rem;
  color: rgba(245, 237, 226, 0.75);
  line-height: 1.6;
}

/* ═══ GALERIE ═══ */
.galerie {
  background: var(--creme);
  position: relative;
}
.galerie .section__header { text-align: center; margin-left: auto; margin-right: auto; }
.galerie .section__header .label { justify-content: center; }
.galerie .section__header .label::before { display: none; }

.carousel {
  position: relative;
  margin-bottom: 3rem;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: grab;
}
.carousel__viewport:active { cursor: grabbing; }
.carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out-expo);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
}
@media (max-width: 900px) {
  .carousel__slide { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 600px) {
  .carousel__slide { flex: 0 0 100%; }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  transition: all 0.6s var(--ease-out-expo);
  background: var(--creme-dark);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.4rem;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.95) 0%, transparent 100%);
  color: var(--creme);
  transform: translateY(20%);
  opacity: 0.9;
  transition: all 0.5s var(--ease-smooth);
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery-item__title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--creme);
  margin-bottom: 0.2rem;
}
.gallery-item__sub {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--or-light);
}

.carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.carousel__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease-smooth);
}
.carousel__btn svg { width: 20px; height: 20px; }
.carousel__btn:hover {
  background: var(--primary);
  color: var(--creme);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178, 58, 42, 0.3);
}
.carousel__dots {
  display: flex;
  gap: 0.6rem;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--creme-dark);
  border: 1px solid var(--primary-light);
  transition: all 0.3s;
}
.carousel__dot--active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
}

.galerie__instagram {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 2rem;
}
.galerie__instagram a { margin-left: 0.5rem; }

/* ═══ VISITER ═══ */
.visite {
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--creme) 50%, #FAF3E8 100%);
  position: relative;
  overflow: hidden;
}
.visite__inner {
  position: relative;
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(178, 58, 42, 0.1);
  overflow: hidden;
}
.visite__decoration {
  width: clamp(180px, 20vw, 280px);
  height: clamp(180px, 20vw, 280px);
  position: relative;
  flex-shrink: 0;
}
.visite__decoration svg {
  width: 100%;
  height: 100%;
  animation: rotate 45s linear infinite;
}
.visite__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2rem;
}
.visite__list {
  margin-bottom: 2.5rem;
}
.visite__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px dashed rgba(178, 58, 42, 0.15);
}
.visite__list li:last-child { border-bottom: none; }
.visite__list svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  padding: 4px;
  background: var(--primary-soft);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .visite__inner { grid-template-columns: 1fr; }
  .visite__decoration { margin: 0 auto; }
}

/* ═══ COMPTOIR DES ARTISANS ═══ */
.comptoir {
  background: linear-gradient(180deg, #FAF3E8 0%, var(--creme) 50%, var(--primary-soft) 100%);
  position: relative;
  overflow: hidden;
}
.comptoir__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 169, 97, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(178, 58, 42, 0.10) 0%, transparent 50%);
  pointer-events: none;
}
.comptoir .container { position: relative; z-index: 1; }
.comptoir .section__header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.comptoir .section__header .label { justify-content: center; }
.comptoir .section__header .label::before { display: none; }

.comptoir__layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* Carte info principale */
.comptoir__card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(178, 58, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  overflow: hidden;
}
.comptoir__card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.comptoir__card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}
.comptoir__badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(178, 58, 42, 0.3);
}
.comptoir__badge svg { width: 32px; height: 32px; }
.comptoir__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}
.comptoir__card-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.comptoir__infos {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.comptoir__infos li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(178, 58, 42, 0.18);
}
.comptoir__infos li:last-child { border-bottom: none; }
.comptoir__infos svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  padding: 6px;
  background: var(--primary-soft);
  border-radius: 50%;
  box-sizing: content-box;
}
.comptoir__infos-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.comptoir__infos-value {
  display: block;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.45;
  word-break: break-word;
}
.comptoir__infos-link {
  color: var(--primary-dark);
  transition: color 0.3s var(--ease-smooth);
}
.comptoir__infos-link:hover { color: var(--primary); text-decoration: underline; }

.comptoir__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
}

/* Liste des artisans */
.comptoir__artisans {
  background: var(--noir);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}
.comptoir__artisans::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.comptoir__artisans-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--or-light);
  letter-spacing: 0.01em;
  position: relative;
}
.comptoir__artisans-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--or), transparent);
  margin-top: 0.6rem;
}
.comptoir__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.comptoir__artisan {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(245, 237, 226, 0.04);
  border: 1px solid rgba(245, 237, 226, 0.06);
  transition: all 0.4s var(--ease-smooth);
}
.comptoir__artisan:hover {
  background: rgba(201, 169, 97, 0.10);
  border-color: rgba(201, 169, 97, 0.25);
  transform: translateX(4px);
}
.comptoir__artisan-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 237, 226, 0.08);
  color: var(--or-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comptoir__artisan-icon svg { width: 24px; height: 24px; }
.comptoir__artisan-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.comptoir__artisan-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--creme);
  letter-spacing: 0.01em;
}
.comptoir__artisan-craft {
  font-size: 0.85rem;
  color: rgba(245, 237, 226, 0.65);
  font-style: italic;
  margin-top: 0.15rem;
}
.comptoir__artisan--featured {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.18) 0%, rgba(178, 58, 42, 0.18) 100%);
  border-color: rgba(201, 169, 97, 0.4);
}
.comptoir__artisan--featured .comptoir__artisan-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--creme);
  box-shadow: 0 6px 16px rgba(178, 58, 42, 0.4);
}
.comptoir__artisan-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--noir);
  background: var(--or-light);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .comptoir__layout { grid-template-columns: 1fr; max-width: 600px; }
}
@media (max-width: 600px) {
  .comptoir__card-header { flex-direction: column; align-items: flex-start; text-align: left; }
  .comptoir__actions .btn { flex: 1; justify-content: center; }
  .comptoir__artisan { padding: 0.8rem; gap: 0.8rem; }
  .comptoir__artisan-icon { width: 40px; height: 40px; }
  .comptoir__artisan-tag { font-size: 0.6rem; padding: 0.25rem 0.55rem; }
}

/* ═══ CONTACT ═══ */
.contact {
  background: var(--creme);
  position: relative;
}
.contact .section__header { text-align: center; margin-left: auto; margin-right: auto; }
.contact .section__header .label { justify-content: center; }
.contact .section__header .label::before { display: none; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
}

.contact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF3E8 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(178, 58, 42, 0.1);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--primary-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary);
}
.contact-card:hover::before { opacity: 0.4; }

.contact-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--creme);
  box-shadow: 0 8px 20px rgba(178, 58, 42, 0.25);
  transition: transform 0.5s var(--ease-elastic);
}
.contact-card__icon svg { width: 28px; height: 28px; }
.contact-card:hover .contact-card__icon { transform: rotate(-10deg) scale(1.08); }

.contact-card__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-card__value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 1.2rem;
  transition: color 0.3s;
  line-height: 1.3;
}
a.contact-card__value:hover { color: var(--primary); }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 400px;
  border: 1px solid rgba(178, 58, 42, 0.1);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) sepia(0.15);
  transition: filter 0.5s;
}
.contact__map:hover iframe { filter: none; }

/* ═══ FOOTER ═══ */
.footer {
  background: linear-gradient(180deg, var(--noir) 0%, #0F0A07 100%);
  color: var(--creme);
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 237, 226, 0.1);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
}
.footer__logo-mark { width: 36px; height: 36px; }
.footer__quote {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--or-light);
  opacity: 0.9;
}
.footer__links { display: flex; gap: 0.8rem; justify-content: center; }
.footer__links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 237, 226, 0.05);
  border: 1px solid rgba(245, 237, 226, 0.1);
  color: var(--creme);
  transition: all 0.3s var(--ease-smooth);
}
.footer__links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.footer__links svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(245, 237, 226, 0.6);
}
.footer__legal { display: flex; gap: 0.6rem; align-items: center; }
.footer__legal a { transition: color 0.3s; }
.footer__legal a:hover { color: var(--or-light); }

@media (max-width: 600px) {
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ═══ PHONE OVERLAY ═══ */
.phone-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
}
.phone-overlay.active {
  visibility: visible;
  opacity: 1;
}
.phone-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.phone-overlay__card {
  position: relative;
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(178, 58, 42, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s var(--ease-elastic);
}
.phone-overlay.active .phone-overlay__card {
  transform: scale(1) translateY(0);
}
.phone-overlay__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--creme-dark);
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.phone-overlay__close svg { width: 18px; height: 18px; }
.phone-overlay__close:hover {
  background: var(--primary);
  color: var(--creme);
  transform: rotate(90deg);
}
.phone-overlay__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}
.phone-overlay__title {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  color: var(--noir);
  font-weight: 500;
  font-style: italic;
}
.phone-overlay__subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.phone-overlay__number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.8rem;
  letter-spacing: 0.02em;
}
.phone-overlay__digit {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  animation: digitIn 0.4s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--i) * 0.06s);
}
.phone-overlay.active .phone-overlay__digit { animation-play-state: running; }
.phone-overlay__sep {
  margin: 0 0.2rem;
  color: var(--or);
  opacity: 0.6;
}
@keyframes digitIn { to { opacity: 1; transform: translateY(0); } }
.phone-overlay__actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.phone-overlay__toast {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--noir);
  color: var(--creme);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  opacity: 0;
  transition: all 0.4s var(--ease-elastic);
  pointer-events: none;
  white-space: nowrap;
}
.phone-overlay__toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  cursor: zoom-out;
  padding: 2rem;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-elastic);
}
.lightbox.active .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 237, 226, 0.1);
  color: var(--creme);
  border: 1px solid rgba(245, 237, 226, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.lightbox__close svg { width: 24px; height: 24px; }
.lightbox__close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* ═══ FOCUS A11Y ═══ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav--menu-open .nav__links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 380px;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    background: rgba(245, 237, 226, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    gap: 1.5rem;
    z-index: 999;
  }
  .nav--menu-open .nav__link {
    font-size: 1.3rem;
    padding: 0.5rem 0;
    text-align: center;
  }
  .nav__cta span { display: none; }
  .nav__cta { padding: 0.7rem; width: 40px; height: 40px; border-radius: 50%; }
  .nav__cta svg { width: 16px; height: 16px; }

  .sylvie__grid { grid-template-columns: 1fr; }
  .sylvie__visual { order: -1; }
  .raku__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { overflow: hidden; }
  .hero__sculpture { right: -10%; opacity: 0.5; width: 70vw; max-width: 70%; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero__ornament { opacity: 0.4; }
  .nav__logo-text { display: none; }
  .nav__icon { display: none; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ═══ EASTER EGG SPARKLES ═══ */
.footer__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer__sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, var(--or-light) 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkle 1.5s var(--ease-out-expo) forwards;
}
@keyframes sparkle {
  0% { transform: translate(0, 0) scale(0); opacity: 1; }
  50% { opacity: 1; transform: translate(var(--dx, 0), var(--dy, -50px)) scale(1.5); }
  100% { transform: translate(calc(var(--dx, 0) * 1.5), calc(var(--dy, -100px))) scale(0); opacity: 0; }
}
