/* ─────────────────────────────────────────────────────────────────
   Déco dans Fer — Design system (converti depuis le projet Lovable)
   Palette éditoriale luxe + Fraunces / Inter
   ───────────────────────────────────────────────────────────────── */

:root {
  --radius: 0.875rem;
  --bg-warm: oklch(0.975 0.012 75);
  --sand: oklch(0.93 0.018 70);
  --terra: oklch(0.68 0.108 40);
  --terra-light: oklch(0.91 0.038 45);
  --brown: oklch(0.42 0.045 50);
  --ink: oklch(0.24 0.018 50);
  --gray-warm: oklch(0.58 0.018 60);
  --light-warm: oklch(0.74 0.022 65);
  --noir: oklch(0.16 0.012 50);
  --cream: oklch(0.965 0.014 75);
  --gold: oklch(0.78 0.105 80);
  --border-warm: oklch(0.91 0.012 70);
}

/* fallback rgb pour les navigateurs très anciens */
@supports not (color: oklch(0 0 0)) {
  :root {
    --bg-warm: #faf7f2;
    --sand: #ede8e0;
    --terra: #c47b5a;
    --terra-light: #f0ddd3;
    --brown: #6b4f3a;
    --ink: #2c2420;
    --gray-warm: #8a7f76;
    --light-warm: #b5a99e;
    --noir: #1a1612;
    --cream: #faf7f2;
    --gold: #d4af50;
    --border-warm: #e8e0d4;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font-display { font-family: 'Fraunces', 'Playfair Display', Georgia, serif; }
.text-balance { text-wrap: balance; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ───── Conteneur ───── */
.wrap { max-width: 1500px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .wrap { padding: 0 48px; } }

/* ───── Texture grain ───── */
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute; inset: -100%;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: .12; pointer-events: none;
  animation: grainMove 8s steps(10) infinite;
  mix-blend-mode: overlay;
}
@keyframes grainMove {
  0%,100% { transform: translate(0,0) }
  10% { transform: translate(-5%,-10%) }  20% { transform: translate(-15%,5%) }
  30% { transform: translate(7%,-25%) }   40% { transform: translate(-5%,25%) }
  50% { transform: translate(-15%,10%) }  60% { transform: translate(15%,0) }
  70% { transform: translate(0,15%) }     80% { transform: translate(3%,-15%) }
  90% { transform: translate(-10%,10%) }
}

/* ───── Intro loader ───── */
.intro {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--noir); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  animation: introOut 1s cubic-bezier(.22,1,.36,1) 1.6s forwards;
}
.intro-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 1; letter-spacing: -0.02em;
  font-weight: 300;
  overflow: hidden;
}
.intro-text span {
  display: inline-block;
  transform: translateY(110%);
  animation: introUp 0.9s cubic-bezier(.22,1,.36,1) 0.2s forwards;
}
.intro-text em { font-style: italic; color: var(--gold); font-weight: 300; }
.intro-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  animation: introLine 1.4s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes introUp { to { transform: translateY(0); } }
@keyframes introLine { to { transform: scaleX(1); } }
@keyframes introOut { to { transform: translateY(-100%); opacity: 0; pointer-events: none; } }

/* ───── Scroll progress ───── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  height: 2px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
}

/* ───── Navigation ───── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 24px 0; transition: padding .6s ease, background .6s ease, border .6s ease, backdrop-filter .6s ease;
  opacity: 0; transform: translateY(-30px);
  animation: navIn .9s cubic-bezier(.22,1,.36,1) 1.6s forwards;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(250,247,242,.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44,36,32,.06);
}
@keyframes navIn { to { opacity: 1; transform: translateY(0); } }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1500px; margin: 0 auto; padding: 0 24px;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 48px; } }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 48px; width: auto; transition: height .4s ease; }
.nav.scrolled .nav-logo img { height: 40px; }
.nav-logo .nav-brand {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 400;
  letter-spacing: -0.01em; color: var(--ink); display: none;
}
@media (min-width: 640px) { .nav-logo .nav-brand { display: block; } }
.nav-brand em { font-style: italic; color: var(--terra); font-weight: 400; }
.nav-links {
  display: none; gap: 40px;
  list-style: none; align-items: center;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  position: relative; overflow: hidden; display: inline-flex;
  font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink);
}
.nav-links a .lbl { display: block; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.nav-links a .lbl-h {
  position: absolute; inset: 0; color: var(--terra);
  transform: translateY(100%); transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover .lbl { transform: translateY(-100%); }
.nav-links a:hover .lbl-h { transform: translateY(0); }

/* ───── Bouton magnétique ───── */
.mbtn {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--noir); color: var(--cream);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  transition: background .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.mbtn:hover { background: var(--terra); }
.mbtn.light { background: var(--cream); color: var(--noir); }
.mbtn.light:hover { background: var(--gold); }
.mbtn svg { width: 14px; height: 14px; }
.mbtn-mobile { display: inline-flex; }
@media (max-width: 640px) {
  .mbtn { padding: 12px 18px; font-size: 11px; }
}

/* ───── Sections ───── */
.section { padding: 96px 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 144px 0; } }
.section.dark { background: var(--noir); color: var(--cream); }

.s-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--terra); margin-bottom: 24px;
}
.s-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--terra); }
.s-tag.centered { justify-content: center; }
.s-tag.centered::before { display: none; }

.h-display {
  font-family: 'Fraunces', serif; font-weight: 300;
  line-height: 1.02; letter-spacing: -0.01em;
  font-size: clamp(40px, 6vw, 88px);
  color: var(--ink); text-wrap: balance;
}
.section.dark .h-display,
.galerie .h-display,
.avis .h-display,
.contact-card .h-display,
.contact-card h2 { color: var(--cream); }
.h-display em { font-style: italic; color: var(--terra); font-weight: 300; }
.section.dark .h-display em,
.galerie .h-display em,
.avis .h-display em,
.contact-card .h-display em,
.contact-card h2 em { color: var(--gold); }

.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: block; transform: translateY(110%);
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.in-view .reveal-line > span,
.reveal-line.in-view > span { transform: translateY(0); }
.in-view .reveal-line:nth-child(2) > span { transition-delay: .1s; }
.in-view .reveal-line:nth-child(3) > span { transition-delay: .2s; }
.in-view .reveal-line:nth-child(4) > span { transition-delay: .3s; }
/* Hero reveal staggered delays via :nth-child on the reveal-line itself */
.hero .reveal-line:nth-child(1).in-view > span { transition-delay: 0s; }
.hero .reveal-line:nth-child(2).in-view > span { transition-delay: .15s; }
.hero .reveal-line:nth-child(3).in-view > span { transition-delay: .3s; }

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1); }
.in-view .fade-up,
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ───── HERO ───── */
.hero { position: relative; min-height: 100vh; background: var(--cream); padding-top: 130px; overflow: hidden; }

.hero-cover {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-cover-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(250, 247, 242, 0.78) 0%,
      rgba(250, 247, 242, 0.75) 55%,
      rgba(250, 247, 242, 0.9) 85%,
      var(--cream) 100%
    );
}
@media (max-width: 1023px) {
  .hero-cover-overlay {
    background: linear-gradient(
      to bottom,
      rgba(250, 247, 242, 0.86) 0%,
      rgba(250, 247, 242, 0.84) 55%,
      rgba(250, 247, 242, 0.96) 85%,
      var(--cream) 100%
    );
  }
}

/* Make sure hero content sits above the cover */
.hero > .wrap { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 28px;
  padding: 7px 16px 7px 12px;
  background: rgba(250, 247, 242, 0.78);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--ink);
  opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) 1.9s forwards;
}
@media (min-width: 1024px) { .hero-tag { margin-bottom: 40px; } }
.hero-tag .dot {
  width: 6px; height: 6px; background: var(--terra); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-title {
  font-family: 'Fraunces', serif; font-weight: 300;
  line-height: 0.92; letter-spacing: -0.02em;
  font-size: clamp(56px, 11vw, 180px);
  color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--terra); font-weight: 300; }
.hero-title .row { display: flex; align-items: baseline; gap: 24px; }
.hero-title .row .line-bar {
  display: none; flex: 1; height: 1px; background: rgba(44,36,32,.2);
}
@media (min-width: 1024px) { .hero-title .row .line-bar { display: block; } }

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 48px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s cubic-bezier(.22,1,.36,1) 2.3s forwards;
}
@media (min-width: 1024px) { .hero-actions { justify-content: flex-end; } }
.hero-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 5fr 7fr; align-items: end; gap: 32px; } }
.hero-desc {
  max-width: 460px;
  font-size: 15px; font-weight: 400; line-height: 1.7;
  color: var(--ink);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s cubic-bezier(.22,1,.36,1) 2.2s forwards;
}
@media (max-width: 1023px) {
  .hero-desc { color: var(--ink); font-weight: 400; }
}
.hero-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink);
}
.hero-link .arrow-line {
  position: relative; display: block; width: 40px; height: 1px; overflow: hidden;
}
.hero-link .arrow-line::before,
.hero-link .arrow-line::after { content:''; position:absolute; inset:0; }
.hero-link .arrow-line::before { background: var(--ink); transition: transform .5s; }
.hero-link .arrow-line::after { background: var(--terra); transform: translateX(-100%); transition: transform .5s; }
.hero-link:hover .arrow-line::before { transform: translateX(100%); }
.hero-link:hover .arrow-line::after { transform: translateX(0); }

/* Mosaïque hero */
.hero-mosaic {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 12px;
  margin-top: 80px; padding-bottom: 80px;
}
@media (min-width: 1024px) { .hero-mosaic { gap: 20px; } }
.hero-mosaic .big {
  height: 55vh;
  border-radius: 16px; overflow: hidden; background: var(--sand);
  clip-path: inset(100% 0 0 0);
  animation: clipReveal 1.4s cubic-bezier(.22,1,.36,1) 2s forwards;
}
@media (min-width: 1024px) { .hero-mosaic .big { height: 68vh; border-radius: 20px; } }
.hero-mosaic .col {
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 1024px) { .hero-mosaic .col { gap: 20px; } }
.hero-mosaic .col > div {
  border-radius: 16px; overflow: hidden; background: var(--sand);
  clip-path: inset(0 0 100% 0);
  position: relative;
}
@media (min-width: 1024px) { .hero-mosaic .col > div { border-radius: 20px; } }
.hero-mosaic .col > div:nth-child(1) { height: 26vh; animation: clipRevealBottom 1.4s cubic-bezier(.22,1,.36,1) 2.2s forwards; }
.hero-mosaic .col > div:nth-child(2) { height: 27vh; animation: clipRevealBottom 1.4s cubic-bezier(.22,1,.36,1) 2.4s forwards; }
@media (min-width: 1024px) {
  .hero-mosaic .col > div:nth-child(1) { height: 32vh; }
  .hero-mosaic .col > div:nth-child(2) { height: 34vh; }
}
.hero-mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-mosaic > div:hover img { transform: scale(1.05); }
@keyframes clipReveal { to { clip-path: inset(0); } }
@keyframes clipRevealBottom { to { clip-path: inset(0 0 0 0); } }

.hero-badge-rotate {
  position: absolute; top: -32px; right: -32px;
  width: 96px; height: 96px;
  animation: rotateSlow 32s linear infinite;
}
@media (min-width: 1024px) { .hero-badge-rotate { width: 112px; height: 112px; } }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(44,36,32,.1);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(.22,1,.36,1) 2.6s forwards;
}
@media (min-width: 768px) { .hero-stats { gap: 24px; padding-top: 40px; } }
.hero-stats > div { min-width: 0; }
.hero-stats .n {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: clamp(22px, 3.5vw, 52px);
  color: var(--terra); line-height: 1.1;
  white-space: nowrap;
}
.hero-stats .l {
  margin-top: 8px; font-size: 9px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--brown);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-stats .l { margin-top: 10px; font-size: 10px; letter-spacing: 0.25em; }
}

/* ───── Marquee ───── */
.marquee {
  background: var(--brown); color: var(--cream);
  padding: 12px 0; overflow: hidden;
  margin-top: 32px;
}
@media (min-width: 1024px) { .marquee { padding: 10px 0; margin-top: 0; } }
.marquee-row {
  display: flex; gap: 0; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-row > div {
  display: flex; align-items: center; gap: 32px; padding: 0 32px;
}
@media (min-width: 1024px) { .marquee-row > div { gap: 40px; padding: 0 40px; } }
.marquee-row .item {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 15px; white-space: nowrap;
  color: rgba(250,247,242,.95);
}
@media (min-width: 1024px) { .marquee-row .item { font-size: 20px; } }
.marquee-row .dot {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───── Avantages ───── */
.section .grid-3 {
  display: grid; gap: 1px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(44,36,32,.1);
  background: rgba(44,36,32,.1);
}
@media (min-width: 768px) { .section .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.adv-item {
  background: var(--cream); padding: 40px 32px;
  transition: background .7s ease, color .7s ease;
  position: relative;
}
@media (min-width: 1024px) { .adv-item { padding: 56px 48px; } }
.adv-item:hover { background: var(--noir); color: var(--cream); }
.adv-item .top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.adv-item .num {
  font-family: 'Fraunces', serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--terra);
  transition: color .5s;
}
.adv-item:hover .num { color: var(--gold); }
.adv-item .ico {
  width: 20px; height: 20px; color: var(--ink);
  transition: color .5s, transform .5s;
}
.adv-item:hover .ico { color: var(--gold); transform: rotate(12deg); }
.adv-item h3 {
  margin-top: 80px;
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(26px, 2.4vw, 38px); line-height: 1.15;
  color: var(--ink); transition: color .5s;
}
.adv-item:hover h3 { color: var(--cream); }
.adv-item p {
  margin-top: 20px; font-size: 14px; font-weight: 300; line-height: 1.7;
  color: var(--gray-warm); transition: color .5s;
}
.adv-item:hover p { color: rgba(250,247,242,.7); }
.adv-item .underline {
  margin-top: 48px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s;
}
.adv-item:hover .underline { transform: scaleX(1); }

.section-head {
  display: grid; gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) { .section-head { grid-template-columns: 7fr 4fr; align-items: end; } }
.section-head .meta {
  align-self: end;
}
.section-head .meta .line { height: 1px; background: rgba(44,36,32,.15); width: 100%; }
.section-head .meta p {
  margin-top: 24px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brown);
}

/* ───── Galerie horizontale ───── */
.galerie {
  position: relative; background: var(--noir); color: var(--cream);
}
@media (min-width: 1024px) {
  .galerie { height: 320vh; }
}
.galerie .sticky {
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) {
  .galerie .sticky {
    position: sticky; top: 0; height: 100vh; overflow: hidden;
  }
}
.galerie .head {
  max-width: 1500px; margin: 0 auto; padding: 64px 24px 16px;
  width: 100%;
}
@media (min-width: 1024px) { .galerie .head { padding: 128px 48px 0; } }
.galerie .head-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.galerie .head-right {
  display: none; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(250,247,242,.4);
}
@media (min-width: 1024px) { .galerie .head-right { display: block; } }
.galerie .scroll-hint {
  display: block; margin: 16px 24px 0;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(250,247,242,.45);
}
@media (min-width: 1024px) { .galerie .scroll-hint { display: none; } }
.galerie .track-wrap {
  position: relative; flex: 1; overflow-x: auto; overflow-y: hidden;
  padding: 24px 0 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(250,247,242,.3) transparent;
  scroll-snap-type: x mandatory;
}
@media (min-width: 1024px) {
  .galerie .track-wrap { overflow: hidden; padding-bottom: 0; scroll-snap-type: none; }
}
.galerie .track-wrap::-webkit-scrollbar { height: 4px; }
.galerie .track-wrap::-webkit-scrollbar-thumb { background: rgba(250,247,242,.3); border-radius: 999px; }
.galerie .track {
  display: flex; align-items: center; gap: 14px;
  padding: 0 24px;
  will-change: transform;
}
@media (min-width: 1024px) {
  .galerie .track {
    position: absolute; top: 50%; left: 0;
    transform: translateY(-50%);
    gap: 40px; padding: 0 48px;
  }
}
.galerie .pic {
  flex-shrink: 0; position: relative; overflow: hidden;
  border-radius: 16px; background: rgba(28,22,18,.4);
  scroll-snap-align: center;
}
@media (min-width: 1024px) { .galerie .pic { border-radius: 20px; scroll-snap-align: none; } }
.galerie .pic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.galerie .pic:hover img { transform: scale(1.1); }
/* Mobile-first: cards pleine largeur, hauteur auto via aspect-ratio */
.galerie .pic {
  width: 100%;
  height: auto;
}
.galerie .pic.size-a { aspect-ratio: 4 / 5; }
.galerie .pic.size-b { aspect-ratio: 1 / 1; }
.galerie .pic.size-c { aspect-ratio: 5 / 6; }
/* Tablette : retour aux largeurs réduites côte à côte (pour un éventuel scroll horizontal) - non activé par défaut */
/* Desktop : tailles fixes pour la galerie sticky horizontale */
@media (min-width: 1024px) {
  .galerie .pic.size-a { height: 68vh; width: 34vw; aspect-ratio: auto; }
  .galerie .pic.size-b { height: 52vh; width: 26vw; aspect-ratio: auto; }
  .galerie .pic.size-c { height: 60vh; width: 30vw; aspect-ratio: auto; }
}
.galerie .pic .pic-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,22,18,.8), transparent);
}
.galerie .pic .pic-cap .n {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 14px; color: var(--cream);
}
.galerie .pic .pic-cap .l {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(250,247,242,.6);
}
.galerie .progress {
  position: relative; margin: 0 auto 40px;
  height: 1px; width: 80%; max-width: 400px;
  background: rgba(250,247,242,.15); overflow: hidden;
}
.galerie .progress .fill {
  height: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  will-change: transform;
}

/* Sur mobile/petit écran, galerie scroll vertical natif (stack) */
@media (max-width: 1023px) {
  .galerie { height: auto; padding-bottom: 32px; }
  .galerie .sticky { position: static; height: auto; }
  .galerie .progress { display: none; }
  .galerie .scroll-hint { display: none; }
  .galerie .track-wrap {
    overflow: visible;
    padding: 24px 0 0;
    scroll-snap-type: none;
    -webkit-mask-image: none; mask-image: none;
  }
  .galerie .track-wrap::-webkit-scrollbar { display: none; }
  .galerie .track {
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
    align-items: stretch;
    width: auto;
    transform: none !important;
    position: static !important;
  }
  .galerie .pic {
    flex-shrink: 1;
    scroll-snap-align: none;
  }
}

/* ───── Présentation ───── */
.presentation { background: var(--cream); padding: 128px 0; }
@media (min-width: 1024px) { .presentation { padding: 192px 0; } }
.presentation .grid {
  display: grid; gap: 64px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .presentation .grid { grid-template-columns: 6fr 1fr 5fr; gap: 48px; } }
.presentation .img-wrap {
  position: relative;
}
.presentation .img-wrap > .img {
  overflow: hidden; border-radius: 24px; background: var(--sand);
  clip-path: inset(100% 0 0 0);
}
.presentation .img-wrap.in-view > .img { animation: clipReveal 1.4s cubic-bezier(.22,1,.36,1) forwards; }
.presentation .img-wrap img { width: 100%; height: 640px; object-fit: cover; }
.presentation .badge {
  display: none;
  position: absolute; left: -24px; bottom: -24px;
  padding: 20px 24px;
  background: var(--noir); color: var(--cream);
  border-radius: 16px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.5);
}
@media (min-width: 1024px) { .presentation .badge { display: block; } }
.presentation .badge .stars { display: flex; gap: 4px; }
.presentation .badge .stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }
.presentation .badge .lbl {
  margin-top: 6px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(250,247,242,.6);
}
.presentation .txt { align-self: start; }
@media (min-width: 1024px) { .presentation .txt { position: sticky; top: 128px; grid-column: 3; } }
.presentation .txt p {
  margin-top: 20px; font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--gray-warm);
}
.presentation .txt p strong { font-weight: 500; color: var(--ink); }
.presentation .cta-link {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 48px;
  font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--terra);
}
.presentation .cta-link .line { position: relative; display: block; width: 48px; height: 1px; overflow: hidden; background: rgba(196,123,90,.3); }
.presentation .cta-link .line::after { content: ''; position: absolute; inset: 0; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform .5s; }
.presentation .cta-link:hover .line::after { transform: scaleX(1); }
.presentation .cta-link svg { width: 16px; height: 16px; transition: transform .35s; }
.presentation .cta-link:hover svg { transform: rotate(45deg); }

/* ───── Magasin (carrousel cinematic) ───── */
.magasin { background: var(--cream); padding-top: 128px; }
@media (min-width: 1024px) { .magasin { padding-top: 192px; } }
.magasin .head {
  max-width: 1500px; margin: 0 auto 64px; padding: 0 24px;
  display: grid; gap: 40px; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .magasin .head { padding: 0 48px; grid-template-columns: 7fr 5fr; align-items: end; } }
.magasin .head-meta {
  font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray-warm);
}
.magasin .carousel {
  position: relative; height: 85vh; width: 100%; overflow: hidden;
}
.magasin .slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.6s cubic-bezier(.22,1,.36,1), transform 7s linear;
}
.magasin .slide.active { opacity: 1; transform: scale(1); }
.magasin .slide img { width: 100%; height: 100%; object-fit: cover; }
.magasin .slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,.7), rgba(26,22,18,.1), transparent);
}
.magasin .car-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  padding: 24px 24px 48px;
}
@media (min-width: 1024px) { .magasin .car-bottom { padding: 24px 48px 64px; } }
.magasin .car-row {
  max-width: 1500px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  color: var(--cream);
}
.magasin .car-counter {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
}
.magasin .car-counter .of { color: rgba(250,247,242,.5); }
.magasin .car-arrows { display: flex; gap: 12px; }
.magasin .car-arrows button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(250,247,242,.3);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background .3s, color .3s;
}
.magasin .car-arrows button:hover { background: var(--cream); color: var(--noir); }
.magasin .car-arrows svg { width: 16px; height: 16px; }
.magasin .car-dots {
  max-width: 1500px; margin: 24px auto 0;
  display: flex; gap: 8px;
}
.magasin .car-dots .dot {
  flex: 1; height: 1px; background: rgba(250,247,242,.25);
  cursor: pointer; transition: background .7s;
}
.magasin .car-dots .dot.active { background: var(--cream); }

/* ───── Avis ───── */
.avis {
  position: relative; background: var(--noir); color: var(--cream);
  padding: 128px 0; overflow: hidden;
  text-align: center;
}
@media (min-width: 1024px) { .avis { padding: 192px 0; } }
.avis .glow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: var(--terra); opacity: .3;
  filter: blur(120px); border-radius: 50%;
  animation: glow 5s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { opacity: .35; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: .6; transform: translate(-50%,-50%) scale(1.08); }
}
.avis .inner { position: relative; max-width: 768px; margin: 0 auto; padding: 0 24px; }
.avis .stars { margin-top: 48px; display: flex; justify-content: center; gap: 12px; }
.avis .stars svg {
  width: 40px; height: 40px; fill: var(--gold); color: var(--gold);
  filter: drop-shadow(0 0 20px rgba(212,175,80,.5));
  opacity: 0; transform: scale(0) rotate(-60deg);
}
.avis.in-view .stars svg { animation: starPop .8s cubic-bezier(.22,1,.36,1) forwards; }
.avis.in-view .stars svg:nth-child(1) { animation-delay: .3s; }
.avis.in-view .stars svg:nth-child(2) { animation-delay: .42s; }
.avis.in-view .stars svg:nth-child(3) { animation-delay: .54s; }
.avis.in-view .stars svg:nth-child(4) { animation-delay: .66s; }
.avis.in-view .stars svg:nth-child(5) { animation-delay: .78s; }
@keyframes starPop { to { opacity: 1; transform: scale(1) rotate(0); } }
.avis .score {
  margin-top: 40px;
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(80px, 14vw, 200px); line-height: 1;
}
.avis .score span { color: var(--gold); }
.avis .sub {
  margin-top: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(250,247,242,.6);
}
@media (min-width: 1024px) {
  .avis .sub { margin-top: -16px; }
}
.avis .legend { margin-top: 24px; font-size: 14px; font-weight: 300; color: rgba(250,247,242,.5); }
.avis .cta { margin-top: 48px; display: inline-block; }

/* ───── Partenaires ───── */
.partners {
  background: var(--cream); padding: 96px 0 88px;
  position: relative; overflow: hidden;
}
@media (min-width: 1024px) { .partners { padding: 128px 0 112px; } }
.partners-head { text-align: center; margin-bottom: 56px; }
.partners-head .s-tag { margin: 0 auto 20px; }
.partners-track-wrap {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partners-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: partnersScroll 32s linear infinite;
}
@media (min-width: 768px) { .partners-track { gap: 80px; } }
.partner {
  flex-shrink: 0; width: 130px;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) { .partner { width: 160px; } }
.partner a { display: flex; align-items: center; justify-content: center; }
.partner img {
  height: 44px; max-width: 130px; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(.45);
  transition: filter .4s ease, transform .4s ease;
}
@media (min-width: 768px) {
  .partner img { height: 52px; max-width: 160px; }
}
.partner img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% / 3)); }
}

/* ───── ACTUS / Facebook ───── */
.actus { background: var(--cream); padding: 96px 0; position: relative; }
@media (min-width: 1024px) { .actus { padding: 128px 0; } }
.actus .grid {
  display: grid; gap: 48px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .actus .grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.actus .txt p {
  margin-top: 24px; font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--gray-warm);
  max-width: 420px;
}
.actus .fb-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; padding: 14px 26px;
  border: 1px solid var(--ink); border-radius: 999px;
  font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink); transition: background .35s, color .35s, border-color .35s;
}
.actus .fb-link:hover { background: var(--ink); color: var(--cream); }
.actus .fb-link svg { width: 14px; height: 14px; }
.actus .fb-frame {
  width: 100%; max-width: 360px;
  border-radius: 20px; overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px -30px rgba(44,36,32,.25);
  border: 1px solid var(--border-warm);
  margin: 0 auto;
}
.actus .fb-frame iframe { width: 100%; display: block; border: none; }

/* ───── Contact ───── */
.contact { background: var(--cream); padding: 96px 0; }
@media (min-width: 1024px) { .contact { padding: 128px 0; } }
.contact-card {
  position: relative; overflow: hidden;
  background: var(--noir); color: var(--cream);
  border-radius: 32px;
  padding: 28px 20px;
}
@media (min-width: 768px) { .contact-card { padding: 40px; border-radius: 40px; } }
@media (min-width: 1024px) { .contact-card { padding: 80px; } }
.contact-card .deco-a, .contact-card .deco-b {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.contact-card .deco-a {
  top: -128px; right: -128px;
  width: 384px; height: 384px;
  background: rgba(196,123,90,.2);
}
.contact-card .deco-b {
  bottom: -160px; left: -128px;
  width: 384px; height: 384px;
  background: rgba(212,175,80,.1);
}
.contact-card .grid {
  position: relative;
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-card .grid { grid-template-columns: 1fr 1fr; gap: 96px; } }
.contact-card h2 {
  font-family: 'Fraunces', serif; font-weight: 300;
  line-height: 1.05; letter-spacing: -0.01em;
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--cream); text-wrap: balance;
}
.contact-card h2 em { font-style: italic; color: var(--gold); font-weight: 300; }
.contact-card .lead {
  margin-top: 32px; max-width: 420px;
  font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(250,247,242,.6);
}
.contact-card .items {
  display: grid; gap: 1px;
  background: rgba(250,247,242,.1);
  border-radius: 16px; overflow: hidden;
  align-self: end;
}
.contact-card .row {
  display: flex; align-items: center; gap: 12px;
  background: var(--noir); padding: 16px 12px;
  transition: background .35s;
  min-width: 0;
}
@media (min-width: 768px) { .contact-card .row { gap: 20px; padding: 24px; } }
.contact-card a.row:hover { background: rgba(26,22,18,.6); }
.contact-card .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(250,247,242,.05); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s, color .35s;
  flex-shrink: 0;
}
@media (min-width: 768px) { .contact-card .ic { width: 44px; height: 44px; border-radius: 12px; } }
.contact-card .ic svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .contact-card .ic svg { width: 20px; height: 20px; } }
.contact-card a.row:hover .ic { background: var(--gold); color: var(--noir); }
.contact-card .row .info { flex: 1 1 0; min-width: 0; }
.contact-card .row .info .l { font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(250,247,242,.4); }
.contact-card .row .info .v {
  margin-top: 4px; font-size: 14px; color: var(--cream);
  word-break: break-word; overflow-wrap: anywhere; line-height: 1.4;
}
@media (min-width: 768px) { .contact-card .row .info .v { font-size: 15px; } }
.contact-card .row .arr { width: 16px; height: 16px; color: rgba(250,247,242,.4); transition: transform .35s, color .35s; flex-shrink: 0; }
.contact-card a.row:hover .arr { transform: rotate(45deg); color: var(--gold); }

/* ───── Footer ───── */
.footer {
  position: relative; overflow: hidden;
  background: var(--noir); color: rgba(250,247,242,.6);
  padding-top: 96px;
}
.footer .wrap { position: relative; }
.footer .big-name {
  overflow: hidden; border-bottom: 1px solid rgba(250,247,242,.1); padding-bottom: 40px;
  display: flex; align-items: center; justify-content: flex-start;
}
.footer .big-name img {
  max-width: 380px; width: 70%; height: auto;
  display: block;
}
@media (max-width: 767px) {
  .footer .big-name img { max-width: 260px; width: 80%; }
}
.footer .cols {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  padding: 64px 0;
}
@media (min-width: 768px) { .footer .cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer .col.brand p {
  font-size: 14px; font-weight: 300; line-height: 1.7; max-width: 320px;
}
.footer .col.brand .socials {
  margin-top: 32px; display: flex; gap: 12px;
}
.footer .col.brand .socials a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(250,247,242,.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .35s, color .35s;
}
.footer .col.brand .socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer .col.brand .socials svg { width: 16px; height: 16px; }
.footer .col strong {
  display: block; margin-bottom: 20px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold);
  font-weight: 500;
}
.footer .col a, .footer .col p { display: block; font-size: 14px; padding: 6px 0; transition: color .35s; }
.footer .col a:hover { color: var(--cream); }

.footer-seo {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  padding: 20px 0;
  border-top: 1px solid rgba(250,247,242,.06);
}
.footer-seo a {
  font-size: 11px; color: rgba(250,247,242,.3);
  transition: color .35s;
}
.footer-seo a:hover { color: rgba(250,247,242,.7); }

.footer-bar {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 12px; padding: 32px 0;
  border-top: 1px solid rgba(250,247,242,.1);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(250,247,242,.4);
}
@media (min-width: 768px) { .footer-bar { flex-direction: row; } }
.footer-bar .right { display: flex; align-items: center; gap: 24px; }
.footer-bar a { transition: color .35s; }
.footer-bar a:hover { color: rgba(250,247,242,.85); }
.footer-bar .admin-link {
  font-size: 11px;
  color: rgba(255,255,255,.4) !important;
  letter-spacing: normal;
  text-transform: none;
}
.footer-bar .admin-link:hover { color: rgba(255,255,255,.85) !important; }

/* ───── SEO / pages internes ───── */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: var(--cream);
  overflow: hidden;
}
.page-hero .grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .page-hero .grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }
.page-hero .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: var(--sand); color: var(--brown);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500;
  margin-bottom: 24px;
}
.page-hero .badge .d { width: 6px; height: 6px; background: var(--terra); border-radius: 50%; }
.page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 300;
  line-height: 1.05; letter-spacing: -0.01em;
  font-size: clamp(40px, 6vw, 80px);
  color: var(--ink); margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--terra); font-weight: 300; }
.page-hero p {
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: var(--gray-warm); margin-bottom: 16px;
}
.page-hero .img {
  border-radius: 24px; overflow: hidden; background: var(--sand);
}
.page-hero .img img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

.cards-3 {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 768px) { .cards-3 { grid-template-columns: repeat(3,1fr); } }
.card {
  background: var(--cream); border: 1px solid var(--border-warm);
  border-radius: 24px; padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(44,36,32,.04);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(44,36,32,.08); }
.card h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 22px; margin-bottom: 12px; color: var(--ink);
}
.card p { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--gray-warm); }

.section.white { background: #fff; }

.two-col {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 56px; } }
.two-col h3 {
  font-family: 'Fraunces', serif; font-weight: 400; font-size: 26px;
  color: var(--ink); margin-bottom: 14px;
}
.two-col p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--gray-warm); margin-bottom: 12px; }
.two-col ul {
  margin-top: 18px; padding-left: 20px;
}
.two-col li { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--gray-warm); margin-bottom: 8px; }

.cta-box {
  background: linear-gradient(180deg, #fff, #f7f1eb);
  border: 1px solid var(--terra-light);
  border-radius: 24px;
  padding: 36px;
  margin-top: 40px;
}
.cta-box h3 {
  font-family: 'Fraunces', serif; font-weight: 400; font-size: 28px;
  color: var(--ink); margin-bottom: 12px;
}
.cta-box p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--gray-warm); max-width: 860px; }

.faq-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
@media (min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1fr; } }

/* About page enrichi */
.about-grid {
  display: grid; gap: 64px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 6fr; gap: 80px; } }
.about-grid .img-col {
  border-radius: 24px; overflow: hidden; background: var(--sand);
}
.about-grid .img-col img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.about-grid .txt p {
  font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--gray-warm);
  margin-bottom: 16px;
}
.about-grid .txt p strong { font-weight: 500; color: var(--ink); }

.engage-grid {
  display: grid; gap: 1px;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(44,36,32,.1);
  background: rgba(44,36,32,.1);
  margin-top: 48px;
}
@media (min-width: 768px) { .engage-grid { grid-template-columns: repeat(3,1fr); } }

/* ───── Photos strip (apropos) ───── */
.photos-strip-section {
  background: var(--cream);
  padding: 32px 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .photos-strip-section { padding: 48px 0; } }
.photos-strip {
  display: flex; gap: 16px;
  width: max-content;
  animation: photosStripScroll 50s linear infinite;
}
@media (min-width: 1024px) { .photos-strip { gap: 24px; } }
.photos-strip img {
  flex-shrink: 0;
  width: 200px; height: 260px;
  object-fit: cover; border-radius: 12px;
}
@media (min-width: 768px) {
  .photos-strip img { width: 280px; height: 340px; border-radius: 16px; }
}
@media (min-width: 1024px) {
  .photos-strip img { width: 320px; height: 400px; border-radius: 20px; }
}
@keyframes photosStripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.engage-item {
  background: var(--cream); padding: 40px 32px;
}
.engage-item .num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 36px; color: var(--terra); margin-bottom: 16px;
}
.engage-item h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 22px; color: var(--ink); margin-bottom: 14px;
}
.engage-item p { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--gray-warm); }

/* ───── Mobile burger menu ───── */
.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  width: 28px; height: 28px;
  justify-content: center; align-items: center;
}
@media (min-width: 768px) { .nav-burger { display: none; } }
.nav-burger span {
  width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .35s, opacity .35s;
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--cream);
  padding: 100px 24px 40px;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  z-index: 55;
  border-bottom: 1px solid var(--border-warm);
}
.nav.open .nav-mobile-panel { transform: translateY(0); }
.nav-mobile-panel a {
  display: block; padding: 16px 0;
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 300;
  color: var(--ink); border-bottom: 1px solid var(--border-warm);
}
.nav-mobile-panel a em { font-style: italic; color: var(--terra); }
@media (min-width: 768px) { .nav-mobile-panel { display: none; } }

/* ───── Petits utilitaires ───── */
.hide-mobile { display: none; }
@media (min-width: 1024px) { .hide-mobile { display: block; } }
.show-mobile { display: block; }
@media (min-width: 1024px) { .show-mobile { display: none; } }

/* Hide custom cursor on touch */
@media (pointer: coarse) {
  /* Touch devices - no special cursor handling needed anymore */
}

/* Réduction du mouvement (accessibilité) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .intro { display: none; }
}
