/* ═══════════════════════════════════════
   GLINNE & CO — style.css (v7 — final)
   ═══════════════════════════════════════ */

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

:root {
  --cream:       #FAF7F2;
  --cream2:      #F3EEE5;
  --cream3:      #EBE4D8;
  --cream4:      #E2D9CA;
  --white:       #FFFFFF;
  --gold:        #B8975A;
  --gold-l:      #D4B882;
  --gold-d:      #8C6E3A;
  --ink:         #1A1714;
  --ink-mid:     #3C3630;
  --ink-soft:    #6A6058;
  --ink-muted:   #9A9088;
  --border:      rgba(0,0,0,0.07);
  --border-l:    rgba(0,0,0,0.04);
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   26px;
  --radius-pill: 60px;
  --shadow-card: 0 2px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.1);
  /* Scroll progress pour le header (0→1) */
  --nav-progress: 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

canvas#particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: .2;
}

/* ═══════════════════════════════════════
   NAVIGATION — transparent, se rétracte au scroll
   ═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.4rem 3rem;
  background: transparent;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding .45s cubic-bezier(.22,1,.36,1),
              background .45s cubic-bezier(.22,1,.36,1),
              border-color .45s;
}
nav.scrolled {
  padding: .7rem 3rem;
  background: rgba(20,18,16,0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Liens nav */
.nav-links { display: flex; gap: 2.2rem; list-style: none; justify-content: flex-start; }
.nav-links a {
  font-size: .67rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color .25s;
}
.nav-links a:hover { color: #fff; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .7rem; justify-content: center; }
.nav-logo-icon {
  width: 32px; height: 32px;
  filter: brightness(0) invert(1) !important; /* force blanc, annule tout inline style */
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 400; letter-spacing: .22em;
  color: #fff !important; /* force blanc, annule tout inline style */
}
.nav-logo-text em { font-style: italic; color: rgba(212,184,130,0.9) !important; }

/* Droite */
.nav-right { display: flex; align-items: center; gap: 1.4rem; justify-content: flex-end; }

.lang {
  font-size: .62rem; letter-spacing: .16em;
  display: flex; gap: .28rem; cursor: pointer; align-items: center;
  color: rgba(255,255,255,0.55);
}
.lang .sep { opacity: .35; }
.lang span { transition: color .2s; }
.lang span:hover, .lang .lang-active { color: #fff; font-weight: 500; }

.nav-cta {
  font-size: .67rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .52rem 1.5rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.35);
  transition: background .25s, border-color .25s, transform .25s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1px;
  background: rgba(255,255,255,0.85);
  transition: transform .3s, opacity .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  z-index: 299;
  padding: 1.8rem 2rem 2.2rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-12px); opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: none; opacity: 1;
  display: block; pointer-events: all;
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.mobile-menu a {
  font-size: .85rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-mid);
}
.mobile-bottom {
  display: flex; flex-direction: column; gap: 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.mobile-bottom .nav-cta {
  text-align: center; padding: .75rem;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink); border-radius: var(--radius-pill);
  font-size: .7rem; letter-spacing: .2em;
}
.mobile-lang { justify-content: center; color: var(--ink-soft); }
.mobile-lang span { color: var(--ink-soft); }
.mobile-lang .lang-active { color: var(--gold-d); font-weight: 500; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding: 10rem 2rem 7rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #1a1410 0%, #2a1f15 60%, #1a1714 100%);
  transition: opacity .6s;
}

.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  filter: blur(3px) brightness(0.82) saturate(1.1);
  transform: scale(1.06);
}

.hero-media-overlay { display: none; }

.orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 3; }
.orb1 {
  width: 560px; height: 560px; top: -150px; right: -130px;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.06) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.08);
  animation: float1 10s ease-in-out infinite;
}
.orb2 {
  width: 290px; height: 290px; bottom: -40px; left: -60px;
  background: radial-gradient(circle at 38% 28%, rgba(255,255,255,0.05), transparent);
  border: 1px solid rgba(255,255,255,0.07);
  animation: float2 13s ease-in-out infinite;
}
.orb3 {
  width: 150px; height: 150px; top: 35%; left: 8%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.07), transparent);
  border: 1px solid rgba(255,255,255,0.08);
  animation: float3 8s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-18px,22px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(14px,-18px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-8px,12px)} }

.hero-content {
  position: relative; z-index: 4;
  max-width: 820px; margin: 0 auto; padding: 0 2rem;
}

.hero-eyebrow {
  font-size: .65rem; font-weight: 400; letter-spacing: .38em;
  text-transform: uppercase; color: var(--gold-l); margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp .9s .4s cubic-bezier(.22,1,.36,1) forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 5.8rem);
  font-weight: 300; line-height: 1.02; color: #fff; margin-bottom: .5em;
  opacity: 0; animation: fadeUp .9s .55s cubic-bezier(.22,1,.36,1) forwards;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4);
}
.hero-title em { font-style: italic; color: var(--gold-l); }
.hero-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,184,130,0.8), transparent);
  margin: 0 auto 1.8rem;
  opacity: 0; animation: fadeUp .9s .7s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 300; font-style: italic; line-height: 1.8;
  color: rgba(255,255,255,0.88); margin-bottom: .8rem;
  opacity: 0; animation: fadeUp .9s .8s cubic-bezier(.22,1,.36,1) forwards;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}
.hero-sub2 {
  font-size: .75rem; font-weight: 300; letter-spacing: .12em;
  color: rgba(255,255,255,0.52); margin-bottom: 2.8rem;
  opacity: 0; animation: fadeUp .9s .9s cubic-bezier(.22,1,.36,1) forwards;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s 1s cubic-bezier(.22,1,.36,1) forwards;
}

.btn-primary {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  padding: .9rem 2.4rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.92); color: var(--ink);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.btn-outline {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  padding: .9rem 2.4rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.65); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 4; opacity: 0; animation: fadeUp .9s 1.4s forwards;
}
.scroll-hint span { font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(212,184,130,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0; transform:scaleY(0); transform-origin:top; }
  60%      { opacity:1; transform:scaleY(1); transform-origin:top; }
}

/* ═══════════════════════════════════════
   BANDEAU RÉASSURANCE
   ═══════════════════════════════════════ */
.reassurance {
  background: var(--ink);
  padding: 1.1rem 3rem;
  position: relative; z-index: 1;
}
.reassurance-inner {
  max-width: 1060px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.r-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .65rem; font-weight: 300; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(250,247,242,0.65);
  padding: .3rem 2rem;
}
.r-item svg { color: var(--gold-l); flex-shrink: 0; opacity: .85; }
.r-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ═══════════════════════════════════════
   SECTIONS BASE
   ═══════════════════════════════════════ */
section { padding: 6.5rem 2rem; position: relative; z-index: 1; }
.container { max-width: 1060px; margin: 0 auto; text-align: center; }
.container.left { text-align: left; }

.s-label {
  font-size: .65rem; font-weight: 500; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold-d);
  margin-bottom: 1rem; display: block;
  /* Renforcement lisibilité */
  opacity: 1;
}
.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: 1rem;
}
.s-title em { font-style: italic; color: var(--gold-d); }
.s-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-l), transparent);
  margin: .8rem auto 2.5rem;
}

/* ═══════════════════════════════════════
   PROMESSE — fond légèrement sombre
   ═══════════════════════════════════════ */
.promesse { background: #EDEAD3; }
.promesse-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.p-card {
  background: #F5F1E4;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.p-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.12); }
.p-icon-wrap {
  width: 52px; height: 52px; margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,151,90,0.08); border-radius: 50%;
  border: 1px solid rgba(184,151,90,0.2);
}
.p-svg-icon { width: 26px; height: 26px; color: var(--gold-d); }
.p-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--ink); margin-bottom: .6rem; }
.p-card-text { font-size: .8rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }

/* ═══════════════════════════════════════
   HISTOIRE — fond crème foncé
   ═══════════════════════════════════════ */
.histoire { background: linear-gradient(155deg, #DDD5C0 0%, #D4C9B0 100%); }
.histoire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.histoire-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 300; line-height: 1.9;
  color: var(--ink-mid); margin-bottom: 1.1rem;
}
.histoire-text p strong { font-weight: 400; color: var(--ink); }

.atelier-col { display: flex; flex-direction: column; }
.atelier-frame {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  background: var(--cream3); position: relative;
}
.atelier-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.atelier-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem; text-align: center; color: var(--ink-muted);
}
.atelier-placeholder svg { opacity: .3; color: var(--gold-d); }
.atelier-placeholder p { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--ink-soft); }
.atelier-placeholder p strong { font-weight: 400; color: var(--ink); }
.atelier-caption { text-align: center; margin-top: 1rem; font-family: 'Cormorant Garamond', serif; font-size: .9rem; font-style: italic; color: var(--ink-muted); }

/* ═══════════════════════════════════════
   PROCESSUS — fond légèrement sombre
   ═══════════════════════════════════════ */
.processus { background: #EDEAD3; }
.processus-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-top: 3.5rem; }
.step {
  background: #F5F1E4;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  opacity: 0; transform: translateY(24px);
}
.step::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-l), transparent);
  opacity: 0; transition: opacity .4s;
}
.step:hover { transform: translateY(-5px) !important; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.step:hover::after { opacity: 1; }
.step.on { opacity: 1; transform: translateY(0); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--gold-l);
  /* Renforcement : on monte l'opacité */
  opacity: .7; line-height: 1; margin-bottom: .7rem;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: .6rem; }
.step-desc { font-size: .78rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }

/* ═══════════════════════════════════════
   CONTACT — fond crème foncé
   ═══════════════════════════════════════ */
.contact-section { background: linear-gradient(148deg, #D4C9B0 0%, #C8BAA0 100%); }
.contact-section .s-label { color: var(--gold-d); }
.contact-section .s-title em { color: var(--gold-d); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; margin-top: 3rem; text-align: left; }
.contact-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; font-style: italic; line-height: 1.9;
  color: var(--ink-mid); margin-bottom: 2.2rem;
  padding-left: 1.4rem; border-left: 2px solid var(--gold-l);
}
.ci-block { margin-bottom: 1.4rem; }
.ci-label { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: .3rem; }
.ci-val { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; color: var(--ink); }
.ci-val a { color: var(--gold-d); }
.ci-val a:hover { text-decoration: underline; }
.ci-muted { font-style: italic; color: var(--ink-soft); }

.contact-form {
  background: rgba(250,246,238,0.85);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.ff { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.fl { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-muted); }
.ff input, .ff select, .ff textarea {
  font-family: 'Jost', sans-serif;
  font-size: .85rem; font-weight: 300; color: var(--ink);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  outline: none; transition: border-color .3s, box-shadow .3s; width: 100%;
}
.ff input::placeholder, .ff textarea::placeholder { color: var(--ink-muted); }
.ff input:focus, .ff select:focus, .ff textarea:focus {
  border-color: var(--gold-l);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.1);
}
/* Validation visuelle */
.ff input:invalid:not(:placeholder-shown),
.ff select:invalid:not(:focus) { border-color: rgba(200,80,60,0.4); }
.ff select option { background: var(--white); color: var(--ink); }
.ff textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  width: 100%; padding: 1rem; border-radius: var(--radius-pill);
  cursor: pointer; border: none; margin-top: .5rem;
  background: var(--ink); color: var(--cream);
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transition: all .35s;
}
.btn-submit:hover { background: var(--gold-d); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(140,110,58,0.28); }
.btn-submit:disabled { opacity: .5; cursor: default; transform: none; }
.form-note { font-size: .72rem; text-align: center; margin-top: .8rem; min-height: 1.2em; color: var(--gold-d); }
.form-note.error { color: #c0392b; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-top {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; padding: 3.5rem 2rem 2.5rem;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: .5rem; }
.f-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; letter-spacing: .2em; color: rgba(250,247,242,0.55); }
.f-logo-text em { font-style: italic; color: var(--gold-l); }
.footer-tagline { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,247,242,0.28); margin-top: .3rem; }

.footer-links { display: flex; flex-direction: column; gap: .8rem; }
.footer-links a { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,247,242,0.45); transition: color .25s; }
.footer-links a:hover { color: var(--gold-l); }

.footer-contact { display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; }
.footer-contact a { font-family: 'Cormorant Garamond', serif; font-size: .95rem; color: rgba(250,247,242,0.5); transition: color .25s; }
.footer-contact a:hover { color: var(--gold-l); }
.footer-insta { display: flex; align-items: center; gap: .5rem; }
.footer-insta svg { opacity: .7; }

.footer-bottom {
  max-width: 1060px; margin: 0 auto;
  padding: 1.2rem 2rem 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.f-copy { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(250,247,242,0.2); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
}
.reveal.on { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { align-items: flex-start; }
}
@media (max-width: 900px) {
  nav { grid-template-columns: auto 1fr auto; padding: 1.1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-right  { display: none; }
  .nav-burger { display: flex; }
  .histoire-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .processus-grid, .promesse-cards { grid-template-columns: 1fr 1fr; }
  .fg { grid-template-columns: 1fr; }
  .reassurance-inner { gap: 0; }
  .r-item { padding: .3rem 1rem; }
  .r-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-contact { align-items: flex-start; }
  .hero-content { padding: 0 1rem; }
}
@media (max-width: 560px) {
  .processus-grid, .promesse-cards { grid-template-columns: 1fr; }
  section { padding: 4rem 1.2rem; }
  .hero { padding: 8rem 1.2rem 5rem; }
  .hero-content { padding: 0; }
  .reassurance { padding: .8rem 1rem; }
  .r-item { font-size: .6rem; padding: .4rem .6rem; }
  .footer-top { padding: 2.5rem 1.2rem 2rem; }
  .footer-bottom { padding: 1rem 1.2rem 1.5rem; }
}
