/* ═══════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════ */
:root {
  --c-bg:        #F4EFE8;
  --c-bg-dark:   #EDEDE8;
  --c-ink:       #0D0C0B;
  --c-ink-soft:  #2A2826;
  --c-bone:      #FAF8F4;
  --c-beige:     #C4AA8C;
  --c-beige-mid: #B09070;
  --c-beige-pale:#E8DDD0;
  --c-grey:      #7A7570;
  --c-grey-lt:   #BDB9B3;
  --c-white:     #FEFDFB;
  --c-black:     #080706;

  --f-serif: 'EB Garamond', Georgia, serif;
  --f-sans:  'Jost', sans-serif;
  --f-caps:  'Cinzel', serif;

  --ease-luxury: cubic-bezier(0.25, 0.1, 0.0, 1.0);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-ink);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════ */
#cur-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-beige);
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
#cur-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(196,170,140,0.5);
  transform: translate(-50%,-50%);
  transition: width 0.4s var(--ease-luxury), height 0.4s var(--ease-luxury), border-color 0.3s, background 0.3s;
}
body.hovering #cur-dot { width: 10px; height: 10px; background: var(--c-beige-mid); }
body.hovering #cur-ring { width: 56px; height: 56px; border-color: var(--c-beige); }

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--c-black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--f-caps);
  font-size: clamp(28px, 5vw, 48px);
  color: var(--c-bone);
  letter-spacing: 12px;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFade 0.8s ease 0.3s forwards;
}
.loader-sub {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--c-beige);
  opacity: 0;
  animation: loaderFade 0.8s ease 0.6s forwards;
}
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.loader-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--c-beige);
  animation: loaderBar 1.6s var(--ease-out) 0.5s forwards;
  width: 0;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar { to { width: 100%; } }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 56px;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.6s var(--ease-luxury), border-color 0.6s, height 0.4s;
  border-bottom: 1px solid transparent;
}
nav.solid {
  background: rgba(244,239,232,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(196,170,140,0.18);
  height: 64px;
}
nav.dark {
  background: rgba(8,7,6,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(196,170,140,0.12);
}

.nav-logo {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
  line-height: 1;
}
.nav-logo-top {
  font-family: var(--f-sans);
  font-size: 7.5px; font-weight: 300;
  letter-spacing: 7px; text-transform: uppercase;
  color: var(--c-beige);
}
.nav-logo-main {
  font-family: var(--f-caps);
  font-size: 20px; font-weight: 400;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--c-bone);
  transition: color 0.4s;
}
nav.solid .nav-logo-main { color: var(--c-ink); }
nav.solid .nav-logo-top { color: var(--c-beige-mid); }

.nav-center {
  display: flex; gap: 48px; align-items: center;
}
.nav-center a {
  font-size: 9.5px; font-weight: 400;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative; padding-bottom: 2px;
  transition: color 0.3s;
}
nav.solid .nav-center a { color: var(--c-grey); }
.nav-center a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--c-beige);
  transition: width 0.4s var(--ease-out);
}
.nav-center a:hover { color: var(--c-beige); }
.nav-center a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-btn {
  font-size: 9px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-beige);
  border: 1px solid rgba(196,170,140,0.4);
  padding: 10px 24px;
  transition: all 0.35s var(--ease-luxury);
}
.nav-btn:hover {
  background: var(--c-beige);
  color: var(--c-black);
  border-color: var(--c-beige);
}
nav.solid .nav-btn { color: var(--c-ink-soft); border-color: rgba(13,12,11,0.2); }
nav.solid .nav-btn:hover { background: var(--c-ink); color: var(--c-bone); border-color: var(--c-ink); }

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  width: 32px; padding: 8px 0; cursor: none;
}
.hamburger span {
  display: block; height: 1px;
  background: rgba(255,255,255,0.6);
  transition: all 0.4s var(--ease-luxury);
}
.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 70%; }
nav.solid .hamburger span { background: var(--c-ink); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); width: 100%; }
.hamburger.open span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); width: 100%; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 990;
  background: var(--c-black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
/* Mobile nav open → logo blanc */
body.menu-open nav .nav-logo-svg svg {
  color: var(--c-bone) !important;
}
.mobile-nav a {
  font-family: var(--f-serif);
  font-size: clamp(32px, 8vw, 52px);
  color: var(--c-bone);
  letter-spacing: 1px;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--c-beige); }
.mobile-nav-sub {
  font-size: 10px; letter-spacing: 5px;
  text-transform: uppercase; color: rgba(196,170,140,0.4);
  margin-top: 24px;
}

/* ═══════════════════════════════════════════
   HERO — Full immersive
═══════════════════════════════════════════ */
#hero {
  height: 100svh; min-height: 680px;
  background: var(--c-black);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}

/* Layered atmospheric background */
.hero-atmo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 110%, rgba(196,170,140,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(196,170,140,0.06) 0%, transparent 50%),
    linear-gradient(170deg, #0D0C0B 0%, #161411 40%, #0A0907 100%);
}

/* Animated grain overlay */
.hero-grain {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainAnim 0.8s steps(1) infinite;
}
@keyframes grainAnim {
  0%,100%{transform:translate(0,0)} 10%{transform:translate(-2%,-1%)}
  20%{transform:translate(1%,2%)} 30%{transform:translate(-1%,1%)}
  40%{transform:translate(2%,-2%)} 50%{transform:translate(-1%,0)}
  60%{transform:translate(0,2%)} 70%{transform:translate(1%,-1%)}
  80%{transform:translate(-2%,1%)} 90%{transform:translate(1%,0)}
}

/* Decorative circle */
.hero-circle {
  position: absolute;
  width: min(70vw, 700px); height: min(70vw, 700px);
  border-radius: 50%;
  border: 1px solid rgba(196,170,140,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: circlePulse 8s ease-in-out infinite;
}
.hero-circle::before {
  content: '';
  position: absolute; inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(196,170,140,0.05);
}
@keyframes circlePulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.04); opacity: 1; }
}

/* Vertical rule left */
.hero-vline {
  position: absolute; left: 56px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(196,170,140,0.25) 25%, rgba(196,170,140,0.25) 75%, transparent 100%);
}

/* Large background typography */
.hero-bg-word {
  position: absolute;
  bottom: -0.15em; right: -0.05em;
  font-family: var(--f-serif);
  font-size: clamp(180px, 25vw, 360px);
  font-weight: 400;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,170,140,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 56px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
}

.hero-left {}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  opacity: 0; animation: heroUp 1s var(--ease-out) 2s forwards;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--c-beige); opacity: 0.5; }
.hero-eyebrow span {
  font-size: 8.5px; font-weight: 400; letter-spacing: 5px;
  text-transform: uppercase; color: var(--c-beige);
}

.hero-h1 {
  font-family: var(--f-serif);
  font-size: clamp(52px, 8.5vw, 110px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--c-bone);
  letter-spacing: -2px;
  margin-bottom: 0;
  opacity: 0; animation: heroUp 1.2s var(--ease-out) 2.1s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--c-beige);
  display: block;
}

.hero-right {
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 36px; padding-bottom: 4px;
}
.hero-p {
  font-size: 14px; line-height: 1.85; font-weight: 300;
  color: rgba(254,253,251,0.38);
  max-width: 380px;
  opacity: 0; animation: heroUp 1s var(--ease-out) 2.4s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 32px;
  opacity: 0; animation: heroUp 1s var(--ease-out) 2.6s forwards;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9.5px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; color: var(--c-black);
  background: var(--c-beige);
  padding: 16px 40px;
  transition: background 0.35s, color 0.35s, gap 0.35s;
  position: relative; overflow: hidden;
}
.btn-hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--c-bone);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease-luxury);
}
.btn-hero span { position: relative; z-index: 1; }
.btn-hero:hover::before { transform: translateX(0); }
.btn-hero-arrow { position: relative; z-index: 1; font-size: 16px; }

.btn-ghost-hero {
  font-size: 9.5px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s, gap 0.3s;
}
.btn-ghost-hero:hover { color: var(--c-beige); gap: 16px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 44px; right: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: heroFade 1s ease 3s forwards;
}
.hero-scroll-track {
  width: 1px; height: 64px;
  background: rgba(196,170,140,0.15);
  position: relative; overflow: hidden;
}
.hero-scroll-thumb {
  position: absolute; top: -100%; left: 0; right: 0;
  height: 100%; background: var(--c-beige);
  animation: scrollDown 2.5s ease-in-out 3s infinite;
}
@keyframes scrollDown {
  0% { top: -100%; } 50% { top: 0%; } 100% { top: 100%; }
}
.hero-scroll span {
  font-size: 7.5px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(196,170,140,0.4); writing-mode: vertical-rl;
}

/* Hero bottom stats */
.hero-stats {
  position: absolute; bottom: 44px; left: 56px;
  display: flex; gap: 48px;
  opacity: 0; animation: heroUp 1s var(--ease-out) 3s forwards;
}
.hero-stat {}
.hero-stat-n {
  font-family: var(--f-serif);
  font-size: 36px; font-weight: 400;
  color: var(--c-bone); line-height: 1;
}
.hero-stat-l {
  font-size: 8px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(196,170,140,0.45); margin-top: 6px;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFade {
  from { opacity: 0; } to { opacity: 1; }
}

/* ═══════════════════════════════════════════
   MARQUEE BAND
═══════════════════════════════════════════ */
.marquee-band {
  background: var(--c-beige);
  padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marqueeRun 18s linear infinite;
}
.marquee-track span {
  font-family: var(--f-sans);
  font-size: 9px; font-weight: 400; letter-spacing: 5px;
  text-transform: uppercase; color: var(--c-black);
  padding: 0 40px;
}
.marquee-track .sep {
  color: rgba(0,0,0,0.3); padding: 0; letter-spacing: 0;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services {
  background: var(--c-bone);
  padding: 160px 56px;
}
.services-intro {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 80px; align-items: end;
  margin-bottom: 120px;
}
.services-intro-left {}
.tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 8px; font-weight: 400; letter-spacing: 5.5px;
  text-transform: uppercase; color: var(--c-beige);
  margin-bottom: 28px;
}
.tag::before { content:''; width: 24px; height: 1px; background: var(--c-beige); }

.h2 {
  font-family: var(--f-serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400; line-height: 0.95;
  letter-spacing: -1.5px; color: var(--c-ink);
}
.h2 em { font-style: italic; color: var(--c-beige-mid); }
.h2.light { color: var(--c-bone); }
.h2.light em { color: var(--c-beige); }

.services-intro-right p {
  font-size: 15px; line-height: 1.9;
  font-weight: 300; color: var(--c-grey);
  max-width: 420px;
}

/* Services list — editorial accordion style */
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center; gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(196,170,140,0.2);
  cursor: none;
  transition: padding 0.4s var(--ease-luxury);
  position: relative; overflow: hidden;
}
.service-row::before {
  content: ''; position: absolute; inset: 0;
  background: var(--c-beige-pale);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-luxury);
  z-index: 0;
}
.service-row:hover::before { transform: scaleX(1); }
.service-row:hover { padding-left: 20px; }
.service-row > * { position: relative; z-index: 1; }

.service-row:first-child { border-top: 1px solid rgba(196,170,140,0.2); }

.s-num {
  font-family: var(--f-serif);
  font-size: 13px; font-style: italic;
  color: var(--c-beige); letter-spacing: 1px;
}
.s-name {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400; color: var(--c-ink);
  transition: color 0.3s;
}
.s-arrow {
  font-size: 20px; color: var(--c-beige);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}
.service-row:hover .s-arrow { opacity: 1; transform: translateX(0); }
.s-desc {
  grid-column: 2;
  font-size: 12px; line-height: 1.8; font-weight: 300;
  color: var(--c-grey); max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), margin 0.4s;
  margin-top: 0;
}
.service-row:hover .s-desc { max-height: 60px; margin-top: 10px; }

/* ═══════════════════════════════════════════
   WATCHES — Dark immersive
═══════════════════════════════════════════ */
#watches {
  background: var(--c-black);
  padding: 160px 0;
}
.watches-intro {
  padding: 0 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 100px;
}
.watches-sub {
  font-size: 14px; line-height: 1.9; font-weight: 300;
  color: rgba(254,253,251,0.35);
}

/* Horizontal scroll container */
.watches-scroll-wrapper {
  overflow: hidden; position: relative;
}
.watches-track {
  display: flex;
  gap: 2px;
  padding: 0 56px;
  transition: transform 0.8s var(--ease-luxury);
}

.watch-slide {
  flex: 0 0 calc(33.333% - 2px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.watch-slide-inner {
  aspect-ratio: 2/3;
  background: var(--c-ink-soft);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.watch-slide-bg {
  position: absolute; inset: 0;
  transition: transform 0.9s var(--ease-luxury);
}
.watch-slide:hover .watch-slide-bg { transform: scale(1.06); }

/* Watch face SVG illustrations */
.watch-face {
  width: 55%; position: relative; z-index: 1;
  transition: transform 0.9s var(--ease-luxury), filter 0.5s;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.8));
}
.watch-slide:hover .watch-face {
  transform: translateY(-12px) scale(1.03);
  filter: drop-shadow(0 50px 100px rgba(0,0,0,0.9)) brightness(1.08);
}

.watch-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(8,7,6,0.95) 0%,
    rgba(8,7,6,0.3) 45%,
    transparent 100%
  );
}

.watch-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3; padding: 40px 36px;
}
.w-ref {
  font-size: 8px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-beige); margin-bottom: 8px;
}
.w-name {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 30px); font-weight: 400;
  color: var(--c-bone); line-height: 1.1;
  margin-bottom: 4px;
}
.w-year {
  font-family: var(--f-serif);
  font-size: 12px; font-style: italic;
  color: rgba(196,170,140,0.5);
}
.w-desc {
  font-size: 11.5px; line-height: 1.75; font-weight: 300;
  color: rgba(254,253,251,0.35);
  margin-top: 12px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.5s;
  opacity: 0;
}
.watch-slide:hover .w-desc { max-height: 80px; opacity: 1; }

.w-corner {
  position: absolute; top: 32px; right: 32px; z-index: 3;
  font-family: var(--f-serif);
  font-size: 80px; font-weight: 400;
  color: rgba(255,255,255,0.03);
  line-height: 1; transition: color 0.5s;
}
.watch-slide:hover .w-corner { color: rgba(196,170,140,0.07); }

/* Watch colors */
.watch-slide:nth-child(1) .watch-slide-bg {
  background: linear-gradient(150deg, #181310 0%, #241d17 100%);
}
.watch-slide:nth-child(2) .watch-slide-bg {
  background: linear-gradient(150deg, #101510 0%, #18251a 100%);
}
.watch-slide:nth-child(3) .watch-slide-bg {
  background: linear-gradient(150deg, #0f1218 0%, #181e28 100%);
}

/* Watch nav dots */
.watches-nav {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 48px; padding: 0 56px;
}
.watch-dot {
  width: 24px; height: 1px;
  background: rgba(196,170,140,0.25);
  cursor: none; transition: background 0.3s, width 0.3s;
}
.watch-dot.active { background: var(--c-beige); width: 48px; }

/* ═══════════════════════════════════════════
   ABOUT — Split editorial
═══════════════════════════════════════════ */
#about {
  background: var(--c-bg);
  padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
}
.about-visual {
  position: relative; overflow: hidden; cursor: none;
  min-height: 700px;
  background: var(--c-ink);
}
.about-visual-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #141210 0%, #1e1a15 50%, #0f0e0d 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-visual-text {
  font-family: var(--f-serif);
  font-size: 220px; font-weight: 400; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,170,140,0.08);
  line-height: 1; user-select: none;
  animation: floatText 12s ease-in-out infinite;
}
@keyframes floatText {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.about-badge-block {
  position: absolute; bottom: 0; left: 0;
  background: var(--c-beige);
  padding: 36px 48px;
  display: flex; flex-direction: column; gap: 4px;
}
.about-badge-n {
  font-family: var(--f-serif);
  font-size: 52px; font-weight: 400;
  color: var(--c-bone); line-height: 1;
}
.about-badge-l {
  font-size: 8px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(254,253,251,0.6);
}
.about-grid-line {
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: rgba(196,170,140,0.08);
}
.about-grid-col {
  position: absolute; top: 0; bottom: 0; left: 40%;
  width: 1px; background: rgba(196,170,140,0.08);
}

.about-content {
  padding: 120px 80px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 48px;
  background: var(--c-bone);
}
.about-pull {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400; font-style: italic;
  color: var(--c-beige-mid);
  line-height: 1.5;
  padding-left: 28px;
  border-left: 2px solid var(--c-beige);
}
.about-body {
  font-size: 14.5px; line-height: 2;
  font-weight: 300; color: var(--c-grey);
}
.about-body strong { color: var(--c-ink-soft); font-weight: 500; }
.about-vals {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.about-val {}
.about-val-n {
  font-size: 8.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-beige); margin-bottom: 10px;
}
.about-val-d {
  font-size: 12.5px; line-height: 1.75;
  font-weight: 300; color: var(--c-grey);
}

/* ═══════════════════════════════════════════
   PROCESS — Dark geometric
═══════════════════════════════════════════ */
#process {
  background: var(--c-ink);
  padding: 160px 56px;
  position: relative; overflow: hidden;
}
.process-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.process-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,170,140,0.04);
}
.pbc1 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.pbc2 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.pbc3 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.process-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 100px;
}
.process-header-right p {
  font-size: 13.5px; line-height: 1.9; font-weight: 300;
  color: rgba(254,253,251,0.3);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.p-step {
  padding: 56px 40px 48px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(196,170,140,0.06);
  position: relative; overflow: hidden;
  transition: background 0.5s, border-color 0.5s;
  cursor: none;
}
.p-step:hover {
  background: rgba(196,170,140,0.04);
  border-color: rgba(196,170,140,0.18);
}
.p-step-line {
  position: absolute; bottom: 0; left: 0; width: 0%; height: 1px;
  background: var(--c-beige);
  transition: width 0.6s var(--ease-out);
}
.p-step:hover .p-step-line { width: 100%; }
.p-num {
  font-family: var(--f-serif);
  font-size: 72px; font-weight: 400; font-style: italic;
  color: rgba(196,170,140,0.1);
  line-height: 1; margin-bottom: 36px;
  display: block;
  transition: color 0.5s;
}
.p-step:hover .p-num { color: rgba(196,170,140,0.22); }
.p-name {
  font-family: var(--f-serif);
  font-size: 22px; font-weight: 400;
  color: var(--c-bone); margin-bottom: 16px;
}
.p-text {
  font-size: 12px; line-height: 1.85; font-weight: 300;
  color: rgba(254,253,251,0.3);
}

/* ═══════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════ */
#projects {
  background: var(--c-bg-dark);
  padding: 160px 0;
}
.projects-head {
  padding: 0 56px; margin-bottom: 80px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 40px;
}
.projects-count {
  font-family: var(--f-serif);
  font-size: 13px; font-style: italic;
  color: var(--c-beige); letter-spacing: 1px;
  padding-bottom: 8px;
}

/* Masonry-style grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  padding: 0 2px;
}
.proj {
  position: relative; overflow: hidden; cursor: none;
  background: var(--c-ink);
}
.proj:nth-child(1) { grid-row: span 2; }

.proj-inner {
  width: 100%; height: 100%;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease-luxury);
  position: relative;
}
.proj:nth-child(1) .proj-inner { min-height: 760px; }
.proj:hover .proj-inner { transform: scale(1.03); }

.proj-bg {
  position: absolute; inset: 0;
}
.proj:nth-child(1) .proj-bg { background: linear-gradient(135deg, #0d0b09, #1f1a13); }
.proj:nth-child(2) .proj-bg { background: linear-gradient(135deg, #0b0d10, #141822); }
.proj:nth-child(3) .proj-bg { background: linear-gradient(135deg, #0d100b, #141b12); }

.proj-symbol {
  font-family: var(--f-serif);
  font-size: clamp(100px, 15vw, 200px);
  color: rgba(255,255,255,0.025);
  font-style: italic; user-select: none;
  position: relative; z-index: 1;
}

.proj-grad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(8,7,6,0.92) 0%,
    rgba(8,7,6,0.1) 55%,
    transparent 100%
  );
  transition: background 0.5s;
}
.proj:hover .proj-grad {
  background: linear-gradient(to top,
    rgba(8,7,6,0.96) 0%,
    rgba(8,7,6,0.3) 55%,
    rgba(8,7,6,0.05) 100%
  );
}

.proj-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 48px 44px;
  transform: translateY(0);
  transition: transform 0s;
}
.proj-cat {
  font-size: 7.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-beige); margin-bottom: 10px;
}
.proj-name {
  font-family: var(--f-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400; color: var(--c-bone);
  line-height: 1.1; margin-bottom: 12px;
}
.proj-text {
  font-size: 12px; line-height: 1.7; font-weight: 300;
  color: rgba(254,253,251,0.35);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.5s;
  opacity: 0;
}
.proj:hover .proj-text { max-height: 80px; opacity: 1; }
.proj-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--c-beige);
  margin-top: 0; max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), margin 0.4s, opacity 0.5s;
  opacity: 0;
}
.proj:hover .proj-link { max-height: 40px; margin-top: 20px; opacity: 1; }

/* ═══════════════════════════════════════════
   CONTACT — Dark cinematic
═══════════════════════════════════════════ */
#contact {
  background:
    linear-gradient(160deg, #0F0D0B 0%, #060504 45%, #0B0908 100%);
  border-top: 1px solid rgba(196,170,140,0.10);
  padding: 160px 56px 140px;
  position: relative; overflow: hidden;
  text-align: center;
}
.contact-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 100% 60% at 50% 110%,
      rgba(196,170,140,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 35% at 50% 0%,
      rgba(196,170,140,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 15% 55%,
      rgba(196,170,140,0.025) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 85% 55%,
      rgba(196,170,140,0.025) 0%, transparent 60%);
}
.contact-word {
  position: absolute; bottom: -0.2em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-serif);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 400; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,170,140,0.04);
  user-select: none; pointer-events: none; white-space: nowrap;
}

.contact-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.contact-tag {
  font-size: 8.5px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--c-beige); margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.contact-tag::before, .contact-tag::after {
  content: ''; width: 24px; height: 1px; background: var(--c-beige); opacity: 0.4;
}
.contact-h2 {
  font-family: var(--f-serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400; line-height: 0.95;
  color: var(--c-bone); letter-spacing: -2px;
  margin-bottom: 24px;
}
.contact-h2 em { font-style: italic; color: var(--c-beige); }
.contact-p {
  font-size: 14px; line-height: 1.8; font-weight: 300;
  color: rgba(254,253,251,0.3);
  margin-bottom: 56px;
}
.contact-btns {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 60px;
}
.btn-outline-light {
  font-size: 9.5px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; color: var(--c-beige);
  border: 1px solid rgba(196,170,140,0.35);
  padding: 16px 44px;
  transition: all 0.4s var(--ease-luxury);
  display: inline-block;
}
.btn-outline-light:hover {
  background: var(--c-beige); color: var(--c-black);
  border-color: var(--c-beige);
}
.btn-fill-light {
  font-size: 9.5px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; color: var(--c-black);
  background: var(--c-beige);
  padding: 16px 44px;
  display: inline-block;
  border: 1px solid var(--c-beige);
  transition: all 0.4s var(--ease-luxury);
}
.btn-fill-light:hover {
  background: transparent; color: var(--c-beige);
}

.contact-ig {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(254,253,251,0.25);
  border: 1px solid rgba(196,170,140,0.12);
  padding: 12px 28px;
  transition: all 0.35s;
}
.contact-ig:hover {
  color: var(--c-beige); border-color: rgba(196,170,140,0.4);
}
.contact-ig svg { width: 14px; height: 14px; fill: currentColor; }

/* ─── Contact Form ─── */
.contact-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(196,170,140,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 48px 52px;
  border-radius: 2px;
  margin-bottom: 52px;
  text-align: left;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-form-field:last-child { margin-bottom: 0; }
.contact-form-row .contact-form-field { margin-bottom: 0; }
.contact-form-label {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-beige);
  font-family: var(--f-caps);
}
.contact-form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(196,170,140,0.22);
  color: var(--c-bone);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  padding: 12px 0;
  width: 100%;
  outline: none;
  transition: border-color 0.3s var(--ease-luxury);
  resize: none;
}
.contact-form-input::placeholder {
  color: rgba(196,170,140,0.28);
}
.contact-form-input:focus {
  border-bottom-color: rgba(196,170,140,0.7);
}
.contact-form-textarea {
  padding: 12px 14px;
  border: 1px solid rgba(196,170,140,0.18);
  background: rgba(255,255,255,0.02);
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}
.contact-form-textarea:focus {
  border-color: rgba(196,170,140,0.45);
}
.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.contact-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-beige);
  color: var(--c-black);
  border: 1px solid var(--c-beige);
  font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px 40px;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
}
.contact-form-btn:hover {
  background: transparent;
  color: var(--c-beige);
}
.contact-form-btn--ig {
  background: transparent;
  color: var(--c-beige);
  border-color: rgba(196,170,140,0.35);
}
.contact-form-btn--ig:hover {
  background: var(--c-beige);
  color: var(--c-black);
  border-color: var(--c-beige);
}
.contact-form-btn svg {
  width: 13px; height: 13px;
  transition: transform 0.35s var(--ease-luxury);
  flex-shrink: 0;
}
.contact-form-btn:not(.contact-form-btn--ig):hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #06050400;
  background: var(--c-black);
  border-top: 1px solid rgba(196,170,140,0.08);
  padding: 80px 56px 44px;
}
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 80px; margin-bottom: 72px;
}
.footer-logo {
  font-family: var(--f-caps);
  font-size: 22px; letter-spacing: 6px;
  color: var(--c-bone); margin-bottom: 6px;
}
.footer-tagline {
  font-size: 8.5px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--c-beige); margin-bottom: 28px;
}
.footer-desc {
  font-size: 12.5px; line-height: 1.9; font-weight: 300;
  color: rgba(254,253,251,0.25); max-width: 280px;
}
.footer-col-t {
  font-size: 8px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--c-beige); margin-bottom: 24px; font-weight: 400;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 12.5px; font-weight: 300; letter-spacing: 0.5px;
  color: rgba(254,253,251,0.28);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--c-beige); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(254,253,251,0.05);
}
.footer-copy {
  font-size: 10px; letter-spacing: 2px;
  color: rgba(254,253,251,0.18);
}
.footer-bottom-right {
  display: flex; gap: 32px;
}
.footer-bottom-right a {
  font-size: 10px; letter-spacing: 2px;
  color: rgba(254,253,251,0.18);
  transition: color 0.3s;
}
.footer-bottom-right a:hover { color: var(--c-beige); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.sr {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.sr.in { opacity: 1; transform: translateY(0); }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }
.sr-d4 { transition-delay: 0.4s; }
.sr-fade { opacity: 0; transform: none; }
.sr-fade.in { opacity: 1; }

/* Horizontal reveal */
.sr-left {
  opacity: 0; transform: translateX(-48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.sr-left.in { opacity: 1; transform: translateX(0); }
.sr-right {
  opacity: 0; transform: translateX(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.sr-right.in { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   NOUVEAUTÉS MONTRES — Section catalogue premium
   Mobile-first, ultra-responsive
═══════════════════════════════════════════ */

#nouveautes {
  background: var(--c-bone);
  padding: clamp(80px, 10vw, 160px) 0;
  overflow: hidden;
}

/* Header */
.nouv-header {
  padding: 0 clamp(20px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.nouv-header-left {}
.nouv-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nouv-count {
  font-family: var(--f-serif);
  font-size: clamp(11px, 1.5vw, 13px);
  font-style: italic;
  color: var(--c-beige);
  letter-spacing: 1px;
  white-space: nowrap;
}
.nouv-filter-btn {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-grey);
  border: 1px solid rgba(196,170,140,0.25);
  padding: 8px 18px;
  cursor: none;
  transition: all 0.3s var(--ease-luxury);
  white-space: nowrap;
  background: transparent;
  font-family: var(--f-sans);
  font-weight: 400;
}
.nouv-filter-btn:hover,
.nouv-filter-btn.active {
  border-color: var(--c-beige);
  color: var(--c-ink);
  background: var(--c-beige-pale);
}

/* ── GRID ── */
/* ─── Toggle de vue ──────────────────────────────────────────── */
.nouv-view-toggle {
  display: flex;
  gap: 2px;
  background: rgba(196,170,140,0.12);
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: var(--c-grey);
  cursor: none;
  transition: background 0.25s var(--ease-luxury), color 0.25s;
}

.view-btn svg { width: 15px; height: 15px; }

.view-btn.active {
  background: var(--c-ink);
  color: var(--c-bone);
}

.view-btn:not(.active):hover {
  background: rgba(196,170,140,0.2);
  color: var(--c-ink);
}

/* ─── Grille de montres ─────────────────────────────────────── */
.nouv-grid {
  display: grid;
  grid-template-columns: 1fr;               /* Mobile: toujours 1 col */
  gap: clamp(16px, 3vw, 24px);
  padding: 0 clamp(16px, 5vw, 56px);
  transition: grid-template-columns 0.3s var(--ease-luxury);
}

/* ── Vue 2 colonnes (défaut tablette+) ── */
.nouv-grid.view-2 {
  grid-template-columns: 1fr;              /* mobile */
}

@media (min-width: 600px) {
  .nouv-grid.view-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Vue 1 colonne — carte horizontale sur desktop ── */
.nouv-grid.view-1 {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 720px) {
  .nouv-grid.view-1 .watch-card-item {
    flex-direction: row;
    max-height: 320px;
  }

  .nouv-grid.view-1 .wc-img-wrap {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: unset;
    height: auto;
  }

  .nouv-grid.view-1 .wc-body {
    padding: clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px);
    justify-content: center;
  }

  .nouv-grid.view-1 .wc-desc {
    max-width: 520px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ── CARD ── */
.watch-card-item {
  background: var(--c-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Prevent any overflow on small screens */
  min-width: 0;
  /* Elevation subtile */
  box-shadow:
    0 1px 3px rgba(13,12,11,0.04),
    0 8px 32px rgba(13,12,11,0.06);
  transition: box-shadow 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury);
  cursor: none;
}

@media (hover: hover) {
  .watch-card-item:hover {
    box-shadow:
      0 2px 6px rgba(13,12,11,0.05),
      0 20px 60px rgba(13,12,11,0.12);
    transform: translateY(-4px);
  }
}

/* ── IMAGE WRAPPER ── */
.wc-img-wrap {
  position: relative;
  /* Ratio 4:5 — beau sur mobile ET desktop */
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-bg-dark);
  flex-shrink: 0;
}

.wc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s var(--ease-luxury);
  /* Prevent layout shift */
  will-change: transform;
}

@media (hover: hover) {
  .watch-card-item:hover .wc-img-wrap img {
    transform: scale(1.04);
  }
}

/* Placeholder si pas d'image */
.wc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-bg-dark), var(--c-beige-pale));
}
.wc-img-placeholder svg {
  width: 40%;
  opacity: 0.18;
}

/* ── BADGE STATUT ── */
.wc-badge {
  position: absolute;
  top: clamp(12px, 3vw, 20px);
  left: clamp(12px, 3vw, 20px);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-family: var(--f-sans);
  padding: 6px 12px;
  /* Keep it always visible, never overflow */
  max-width: calc(100% - 24px);
  white-space: nowrap;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wc-badge.disponible {
  background: rgba(254,253,251,0.92);
  color: var(--c-ink-soft);
  border: 1px solid rgba(196,170,140,0.3);
}
.wc-badge.reserve {
  background: rgba(196,170,140,0.92);
  color: var(--c-black);
  border: 1px solid rgba(176,144,112,0.4);
}
.wc-badge.vendu {
  background: rgba(13,12,11,0.82);
  color: rgba(254,253,251,0.7);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── CARD BODY ── */
.wc-body {
  padding: clamp(20px, 4vw, 32px) clamp(20px, 4vw, 28px) clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  /* Prevent any text overflow */
  min-width: 0;
}

.wc-brand {
  font-size: 7.5px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c-beige);
  font-weight: 500;
  margin-bottom: 8px;
  /* Prevent overflow */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-name {
  font-family: var(--f-serif);
  /* Fluid — lisible sur iPhone SE jusqu'au desktop */
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.15;
  margin-bottom: 12px;
  /* Allow wrap but never clip */
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.wc-sep {
  width: 28px;
  height: 1px;
  background: var(--c-beige);
  opacity: 0.5;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.wc-desc {
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.75;
  font-weight: 300;
  color: var(--c-grey);
  margin-bottom: clamp(20px, 4vw, 28px);
  /* Multi-line OK, no clip */
  overflow-wrap: break-word;
}

/* Price + button row */
.wc-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wc-price {
  font-family: var(--f-serif);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--c-ink-soft);
  font-style: italic;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── BOUTON WHATSAPP ── */
.wc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--f-sans);
  color: var(--c-black);
  background: var(--c-beige);
  /* Min tap target 44px height — WCAG recommandé */
  min-height: 44px;
  padding: 0 clamp(16px, 3vw, 24px);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease-luxury), color 0.35s;
  /* Prevent shrink on small screens */
  flex-shrink: 0;
  white-space: nowrap;
}
.wc-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--c-ink);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-luxury);
}
.wc-btn span { position: relative; z-index: 1; }
.wc-btn svg {
  position: relative; z-index: 1;
  width: 14px; height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}
@media (hover: hover) {
  .wc-btn:hover::before { transform: translateX(0); }
  .wc-btn:hover { color: var(--c-bone); }
}

/* Carte "vendu" — état désactivé gracieux */
.watch-card-item.is-vendu .wc-btn {
  background: rgba(13,12,11,0.08);
  color: var(--c-grey);
  pointer-events: none;
}
.watch-card-item.is-vendu .wc-btn::before { display: none; }
.watch-card-item.is-vendu .wc-img-wrap img {
  filter: grayscale(60%) brightness(0.9);
}

/* ── EMPTY STATE ── */
.nouv-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
}
.nouv-empty p {
  font-family: var(--f-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--c-grey);
}

/* ── VOIR PLUS BUTTON ── */
.nouv-more {
  text-align: center;
  margin-top: clamp(48px, 7vw, 80px);
  padding: 0 clamp(16px, 5vw, 56px);
}
.nouv-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: var(--f-sans);
  color: var(--c-ink);
  border: 1px solid rgba(13,12,11,0.18);
  padding: 16px 44px;
  background: transparent;
  cursor: none;
  transition: all 0.4s var(--ease-luxury);
  text-decoration: none;
}
.nouv-more-btn:hover {
  background: var(--c-ink);
  color: var(--c-bone);
  border-color: var(--c-ink);
}

/* ── Scroll reveal pour les cartes ── */
.wc-sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.wc-sr.in { opacity: 1; transform: translateY(0); }

/* ── MOBILE SPECIFICS ── */

/* iPhone SE / très petits (< 375px) */
@media (max-width: 374px) {
  .nouv-grid { padding: 0 12px; gap: 12px; }
  /* En vue 1 colonne sur mobile : reste vertical, jamais horizontal */
  .nouv-grid.view-1 .watch-card-item { flex-direction: column !important; max-height: none !important; }
  .nouv-grid.view-1 .wc-img-wrap     { width: 100% !important; aspect-ratio: 4/5 !important; }
  .wc-footer { flex-direction: column; align-items: flex-start; }
  .wc-btn { width: 100%; justify-content: center; }
  .nouv-filter-btn { display: none; }
  /* Toggle de vue discret sur mobile */
  .nouv-view-toggle { gap: 1px; }
  .nouv-header { padding: 0 12px; }
}

/* iPhone 12/14 standard (375–428px) */
@media (max-width: 480px) {
  .wc-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .wc-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Anti-overflow global dans la section ─── */
#nouveautes * {
  max-width: 100%;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-center { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 32px; }
  .hero-content { padding: 0 32px 80px; grid-template-columns: 1fr; gap: 40px; }
  .hero-h1 { font-size: clamp(48px, 12vw, 80px); }
  .hero-right { gap: 24px; }
  .hero-stats { left: 32px; }
  .hero-scroll { right: 32px; }
  .hero-vline { left: 32px; }
  #services { padding: 100px 32px; }
  .services-intro { grid-template-columns: 1fr; gap: 40px; }
  #watches { padding: 100px 0; }
  .watches-intro { padding: 0 32px; grid-template-columns: 1fr; gap: 40px; }
  .watches-track { padding: 0 32px; }
  .watch-slide { flex: 0 0 80%; }
  #about { grid-template-columns: 1fr; }
  .about-visual { min-height: 420px; }
  .about-content { padding: 80px 32px; }
  #process { padding: 100px 32px; }
  .process-header { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  #projects { padding: 100px 0; }
  .projects-head { padding: 0 32px; }
  .projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .proj:nth-child(1) { grid-row: span 1; }
  .proj:nth-child(1) .proj-inner { min-height: 480px; }
  #contact { padding: 120px 32px; }
  footer { padding: 64px 32px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 640px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-stat-n { font-size: 28px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .contact-btns { flex-direction: column; align-items: stretch; }
  .contact-btns a { text-align: center; }
  .about-vals { grid-template-columns: 1fr; }
}

/* ─── REAL ASSET STYLES ────────────────────────────────────── */

/* Navbar SVG logo — NOIR sur fond clair, BLANC sur fond sombre */
.nav-logo-svg {
  height: 100px;
  width: auto;
  display: flex;
  align-items: center;
  transition: opacity 0.35s;
}
.nav-logo-svg svg {
  height: 100px;
  width: auto;
  max-width: 350px;
  transition: color 0.5s var(--ease-luxury), filter 0.5s;
}
/* Sur fond sombre (hero) → logo blanc */
nav:not(.solid) .nav-logo-svg svg {
  color: var(--c-bone) !important;
  filter: none;
}
/* Sur fond clair (après scroll) → logo noir */
nav.solid .nav-logo-svg svg {
  color: var(--c-ink) !important;
  filter: none;
}
.nav-logo:hover .nav-logo-svg { opacity: 0.7; }

/* Hero real background photo */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  filter: grayscale(30%) contrast(110%);
  pointer-events: none;
  user-select: none;
}

/* Watch real photos in hero slides */
.watch-real-img {
  width: 65% !important;
  height: auto !important;
  object-fit: contain !important;
  position: relative; z-index: 1;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.85));
  transition: transform 0.9s var(--ease-luxury), filter 0.5s !important;
}
.watch-slide:hover .watch-real-img {
  transform: translateY(-14px) scale(1.04) !important;
  filter: drop-shadow(0 60px 100px rgba(0,0,0,0.9)) brightness(1.06) !important;
}
@media (max-width: 640px) {
  .watch-real-img { width: 60% !important; }
}

/* About real photo */
.about-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.8s var(--ease-luxury);
}
.about-visual:hover .about-real-img {
  transform: scale(1.02);
}
/* Subtle gradient overlay on about photo for badge readability */
.about-visual-inner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,12,11,0.55) 0%,
    transparent 40%
  );
  pointer-events: none;
  z-index: 1;
}
.about-badge-block { z-index: 2; position: relative; }


/* ═══════════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════════ */

/* Bouton flottant */
.admin-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 8000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-ink);
  border: 1px solid rgba(196,170,140,0.25);
  color: var(--c-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.3s, transform 0.3s var(--ease-out), border-color 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.admin-fab:hover {
  background: var(--c-beige);
  color: var(--c-black);
  border-color: var(--c-beige);
  transform: scale(1.08);
}
.admin-fab svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

/* Overlay */
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 8100;
  background: rgba(8,7,6,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-luxury), visibility 0.4s;
  backdrop-filter: blur(4px);
}
.admin-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Panneau latéral */
.admin-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8200;
  width: min(420px, 100vw);
  background: var(--c-bone);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-luxury);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 60px rgba(0,0,0,0.25);
}
.admin-panel.open {
  transform: translateX(0);
}

/* Header du panneau */
.admin-panel-header {
  position: sticky;
  top: 0;
  background: var(--c-bone);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(196,170,140,0.2);
}
.admin-panel-header h2 {
  font-family: var(--f-caps);
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c-ink);
}
.admin-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--c-grey);
  cursor: none;
  transition: color 0.2s;
  line-height: 1;
  padding: 4px;
}
.admin-close:hover { color: var(--c-ink); }

/* Formulaire */
.admin-form {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(196,170,140,0.15);
}
.admin-form-title {
  font-family: var(--f-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--c-ink);
  margin-bottom: 20px;
}
.admin-field {
  margin-bottom: 14px;
}
.admin-field label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-grey);
  margin-bottom: 6px;
}
.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid rgba(196,170,140,0.25);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 300;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 2px;
}
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
  border-color: var(--c-beige);
}
.admin-field textarea {
  resize: vertical;
  min-height: 72px;
}
.admin-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.admin-btn-cancel,
.admin-btn-save {
  flex: 1;
  padding: 12px 20px;
  font-family: var(--f-sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s var(--ease-luxury);
  border-radius: 2px;
}
.admin-btn-cancel {
  background: transparent;
  border: 1px solid rgba(196,170,140,0.3);
  color: var(--c-grey);
}
.admin-btn-cancel:hover {
  border-color: var(--c-ink);
  color: var(--c-ink);
}
.admin-btn-save {
  background: var(--c-ink);
  border: 1px solid var(--c-ink);
  color: var(--c-bone);
}
.admin-btn-save:hover {
  background: var(--c-beige);
  border-color: var(--c-beige);
  color: var(--c-black);
}
.admin-btn-save:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Liste admin */
.admin-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 12px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-grey);
}
.admin-list-count {
  color: var(--c-beige);
}
.admin-list {
  padding: 0 16px 32px;
  flex: 1;
}
.admin-loading {
  text-align: center;
  padding: 32px;
  font-size: 12px;
  color: var(--c-grey);
}
.admin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 6px;
  background: var(--c-bg);
  border: 1px solid rgba(196,170,140,0.12);
  transition: border-color 0.2s;
}
.admin-item:hover {
  border-color: rgba(196,170,140,0.35);
}
.admin-item-info {
  flex: 1;
  min-width: 0;
}
.admin-item-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-item-status {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.admin-status-disponible { color: #5a8a6a; }
.admin-status-reserve    { color: var(--c-beige-mid); }
.admin-status-vendu      { color: var(--c-grey-lt); }

.admin-item-actions {
  display: flex;
  gap: 6px;
  margin-left: 12px;
}
.admin-edit-btn,
.admin-delete-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(196,170,140,0.2);
  color: var(--c-grey);
  font-size: 14px;
  cursor: none;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.admin-edit-btn:hover {
  background: var(--c-beige-pale);
  border-color: var(--c-beige);
  color: var(--c-ink);
}
.admin-delete-btn:hover {
  background: #fee;
  border-color: #d88;
  color: #c44;
}

/* Toast notification */
.admin-toast {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 9999;
  background: var(--c-ink);
  color: var(--c-bone);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-left: 3px solid var(--c-beige);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  pointer-events: none;
  border-radius: 2px;
}
.admin-toast.admin-toast-error {
  border-left-color: #c44;
  background: #3a1818;
}
.admin-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive admin */
@media (max-width: 768px) {
  .admin-fab  { bottom: 20px; right: 20px; width: 46px; height: 46px; }
  .admin-toast { right: 16px; bottom: 80px; }
}

/* ═══════════════════════════════════════════
   AUTH NAV — état de connexion dans la navbar
═══════════════════════════════════════════ */

.nav-auth {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 8px;
}

.nav-auth-link {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-auth-link::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--c-beige);
  transition: width 0.4s var(--ease-out);
}
.nav-auth-link:hover { color: var(--c-beige); }
.nav-auth-link:hover::after { width: 100%; }
nav.solid .nav-auth-link { color: var(--c-grey); }

.nav-user-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-user-name {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-beige);
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}
.nav-user-name:hover { color: var(--c-bone); }
nav.solid .nav-user-name { color: var(--c-beige-mid); }

.nav-logout-btn {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: none;
  border: none;
  cursor: none;
  padding: 0;
  transition: color 0.3s;
}
.nav-logout-btn:hover { color: rgba(255,255,255,0.7); }
nav.solid .nav-logout-btn { color: var(--c-grey-lt); }
nav.solid .nav-logout-btn:hover { color: var(--c-ink); }

.nav-admin-badge {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-beige);
  border: 1px solid rgba(196,170,140,0.35);
  padding: 5px 10px;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-admin-badge:hover {
  background: var(--c-beige);
  color: var(--c-black);
}

/* ═══════════════════════════════════════════
   MODAL AUTH — invitation à se connecter
═══════════════════════════════════════════ */

.auth-modal-overlay {
  position: fixed; inset: 0;
  z-index: 9500;
  background: rgba(8,7,6,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.auth-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.auth-modal-box {
  background: var(--c-bone);
  max-width: 480px;
  width: 100%;
  padding: 52px 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.45s var(--ease-out);
  text-align: center;
}
.auth-modal-overlay.open .auth-modal-box {
  transform: translateY(0);
}
.auth-modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; cursor: none;
  color: var(--c-grey);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.auth-modal-close:hover { color: var(--c-ink); }
.auth-modal-close svg { width: 18px; height: 18px; }

.auth-modal-eyebrow {
  font-family: var(--f-caps);
  font-size: 9px; letter-spacing: 6px;
  text-transform: uppercase; color: var(--c-beige);
  margin-bottom: 20px;
}
.auth-modal-title {
  font-family: var(--f-serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.auth-modal-title em { font-style: italic; color: var(--c-beige-mid); }
.auth-modal-desc {
  font-size: 13px; font-weight: 300;
  color: var(--c-grey); line-height: 1.8;
  max-width: 320px; margin: 0 auto 36px;
}
.auth-modal-actions {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 260px; margin: 0 auto 20px;
}
.auth-modal-btn-primary {
  display: block; padding: 14px 28px;
  background: var(--c-ink); color: var(--c-bone);
  font-size: 9.5px; letter-spacing: 4px;
  text-transform: uppercase;
  transition: background 0.3s;
  border-radius: 2px;
}
.auth-modal-btn-primary:hover { background: var(--c-beige); color: var(--c-black); }
.auth-modal-btn-secondary {
  display: block; padding: 13px 28px;
  border: 1px solid rgba(196,170,140,0.35);
  color: var(--c-grey);
  font-size: 9.5px; letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 2px;
}
.auth-modal-btn-secondary:hover { border-color: var(--c-ink); color: var(--c-ink); }
.auth-modal-foot {
  font-size: 10px; color: var(--c-grey-lt);
  letter-spacing: 1.5px;
}

/* ═══════════════════════════════════════════
   BOUTON FAVORI sur les cartes de montres
═══════════════════════════════════════════ */

.wc-fav-btn {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 36px; height: 36px;
  background: rgba(250,248,244,0.9);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: transform 0.3s var(--ease-out), background 0.25s;
}
.wc-fav-btn:hover { transform: scale(1.12); background: var(--c-bone); }
.wc-fav-btn svg { width: 16px; height: 16px; }
.wc-fav-btn .heart-empty  { display: block; color: var(--c-grey); }
.wc-fav-btn .heart-filled { display: none; color: #e05454; }
.wc-fav-btn.is-fav .heart-empty  { display: none; }
.wc-fav-btn.is-fav .heart-filled { display: block; }
.wc-fav-btn.pulse { animation: heartPulse 0.4s var(--ease-out); }

@keyframes heartPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.3); }
  70%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* Toast public (léger, différent du toast admin) */
.pub-toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--c-ink);
  color: var(--c-bone);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.35s var(--ease-out);
  pointer-events: none;
  z-index: 9000;
  white-space: nowrap;
}
.pub-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ╔═══════════════════════════════════════════════════════════╗
   ║          MOBILE OPTIMISATION — PREMIUM TOUCH              ║
   ╚═══════════════════════════════════════════════════════════╝ */

/* ── Anti tap-highlight + suppression délai 300ms ── */
*, *::before, *::after {
  -webkit-tap-highlight-color: transparent;
}
a, button, [onclick], label, select {
  touch-action: manipulation;
}

/* ── Curseur : désactivé sur appareils tactiles ── */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto !important; }
  #cur-dot, #cur-ring { display: none !important; }

  a, button, .hamburger, .watch-dot, .service-row,
  .p-step, .proj, .watch-card-item, .admin-fab,
  .admin-close, .admin-btn-cancel, .admin-btn-save,
  .wc-fav-btn, .nav-logout-btn, .nouv-filter-btn,
  .nouv-more-btn, .fav-remove-btn, .admin-edit-btn,
  .admin-delete-btn, .watch-slide, .nouv-filter-btn {
    cursor: pointer !important;
  }
}

/* ── 1. NAVBAR — taille et espacement réduits ── */
@media (max-width: 768px) {
  nav             { padding: 0 20px; height: 68px; }
  nav.solid       { height: 60px; }
  .nav-logo-svg   { height: 68px; }
  .nav-logo-svg svg { height: 68px; max-width: 210px; }
  .nav-right      { gap: 12px; }
}

@media (max-width: 480px) {
  nav             { padding: 0 16px; }
  .nav-logo-svg   { height: 56px; }
  .nav-logo-svg svg { height: 56px; max-width: 170px; }
}

/* ── Nav auth icon — zone de tap 44×44 min ── */
.nav-auth-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 4px;
}
.nav-auth-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── 2. MENU MOBILE — liens auth ── */
.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: rgba(196,170,140,0.2);
  margin: 4px 0;
}
.mobile-nav-auth-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav-auth-links a {
  font-family: var(--f-serif);
  font-size: clamp(24px, 6vw, 40px) !important;
  color: var(--c-bone) !important;
  letter-spacing: 1px;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.mobile-nav-auth-links a:hover { color: var(--c-beige) !important; }

/* ── 3. HERO — mobile ── */
@media (max-width: 768px) {
  .hero-vline  { display: none; }
  .hero-scroll { display: none; }

  .hero-content {
    padding: 0 20px 120px;
    gap: 28px;
  }

  /* Stats en flow (pas absolues) */
  .hero-stats {
    position: static;
    opacity: 1 !important;
    animation: none !important;
    display: flex;
    gap: 32px;
    margin-top: 8px;
  }
  .hero-stat-n { font-size: 28px; }
  .hero-stat-l { font-size: 7px; letter-spacing: 2.5px; }

  /* Boutons en colonne */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .btn-hero       { width: 100%; justify-content: center; min-height: 52px; }
  .btn-ghost-hero { min-height: 44px; padding: 4px 0; }
}

@media (max-width: 480px) {
  .hero-content  { padding: 0 16px 100px; }
  .hero-h1       { font-size: clamp(42px, 11vw, 60px); letter-spacing: -1px; }
  .hero-p        { font-size: 13px; }
  .hero-eyebrow  { margin-bottom: 20px; }
  .hero-bg-word  { font-size: clamp(90px, 38vw, 160px); }
}

/* ── 4. SERVICES — mobile ── */
@media (max-width: 768px) {
  #services        { padding: 80px 20px; }
  .services-intro  { margin-bottom: 56px; }
  .service-row {
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 26px 0;
  }
  .s-arrow { display: none; }
  .s-name  { font-size: clamp(18px, 4.5vw, 24px); }
}

@media (max-width: 480px) {
  #services       { padding: 60px 16px; }
  .service-row    { grid-template-columns: 28px 1fr; gap: 12px; padding: 20px 0; }
  .s-num          { font-size: 11px; }
}

/* ── 5. WATCHES HERO SLIDER — swipe amélioré ── */
@media (max-width: 768px) {
  #watches        { padding: 80px 0; }
  .watches-intro  { padding: 0 20px; margin-bottom: 56px; }
  .watches-track  { padding: 0 20px; gap: 10px; }
  .watch-slide    { flex: 0 0 86%; }
  .watch-dot      { cursor: pointer; }
}

@media (max-width: 480px) {
  .watches-intro  { padding: 0 16px; }
  .watches-track  { padding: 0 16px; }
  .watch-slide    { flex: 0 0 90%; }
  .watch-info     { padding: 28px 24px; }
}

/* ── 6. ABOUT — mobile ── */
@media (max-width: 768px) {
  .about-content       { padding: 60px 20px; gap: 36px; }
  .about-visual-text   { font-size: 140px; }
  .about-badge-block   { padding: 24px 32px; }
  .about-badge-n       { font-size: 40px; }
}

@media (max-width: 480px) {
  .about-content  { padding: 48px 16px; gap: 28px; }
  .about-pull     { font-size: 18px; padding-left: 18px; }
  .about-body     { font-size: 14px; }
}

/* ── 7. PROCESS — mobile ── */
@media (max-width: 768px) {
  #process          { padding: 80px 20px; }
  .process-header   { margin-bottom: 56px; }
  .p-step           { padding: 36px 24px 32px; }
  .p-num            { font-size: 56px; margin-bottom: 24px; }
}

@media (max-width: 480px) {
  #process          { padding: 60px 16px; }
  .p-step           { padding: 28px 18px; }
  .p-num            { font-size: 48px; margin-bottom: 20px; }
}

/* ── 8. PROJETS — mobile ── */
@media (max-width: 768px) {
  #projects         { padding: 80px 0; }
  .projects-head    { padding: 0 20px; margin-bottom: 48px; }
  .proj-info        { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .projects-head                      { padding: 0 16px; }
  .proj:nth-child(1) .proj-inner      { min-height: 360px; }
  .proj-inner                         { min-height: 260px; }
  .proj-name                          { font-size: clamp(20px, 5vw, 28px); }
}

/* ── 9. CONTACT — mobile ── */
@media (max-width: 768px) {
  #contact                { padding: 100px 24px 80px; }
  .contact-form           { padding: 36px 28px; }
  .contact-form-row       { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  #contact                { padding: 80px 16px 60px; }
  .contact-h2             { font-size: clamp(34px, 9vw, 52px); letter-spacing: -1px; }
  .contact-word           { font-size: clamp(70px, 26vw, 140px); }
  .contact-form           { padding: 28px 20px; }
  .contact-form-actions   { flex-direction: column; }
  .contact-form-btn       { width: 100%; justify-content: center; padding: 18px 24px; }
  .btn-outline-light,
  .btn-fill-light         { padding: 14px 24px; width: 100%; text-align: center; display: block; }
  .contact-ig             { padding: 12px 20px; font-size: 9px; }
}

/* ── 10. FOOTER — mobile ── */
@media (max-width: 768px) {
  footer            { padding: 56px 20px 32px; }
}

@media (max-width: 480px) {
  footer            { padding: 48px 16px 28px; }
  .footer-logo      { font-size: 18px; }
}

/* ── 11. BOUTON FAVORI — touch target 44×44 ── */
@media (max-width: 768px) {
  .wc-fav-btn         { width: 44px; height: 44px; top: 10px; right: 10px; }
  .wc-fav-btn svg     { width: 18px; height: 18px; }
}

/* ── 12. MODAL AUTH — mobile ── */
@media (max-width: 480px) {
  .auth-modal-box     { padding: 40px 24px; }
  .auth-modal-actions { max-width: 100%; }
}

/* ── 13. TOAST PUBLIC — mobile ── */
@media (max-width: 480px) {
  .pub-toast {
    bottom: 24px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: translateX(0) translateY(12px);
    white-space: normal;
    text-align: center;
    font-size: 10px;
  }
  .pub-toast.show {
    transform: translateX(0) translateY(0);
  }
}

/* ── 14. LOADER — mobile ── */
@media (max-width: 480px) {
  .loader-logo { font-size: clamp(20px, 7vw, 32px); letter-spacing: 8px; }
}

/* ── 15. ADMIN FAB — mobile ── */
@media (max-width: 480px) {
  .admin-fab   { bottom: 20px; right: 16px; }
  .admin-toast { right: 16px; left: 16px; bottom: 76px; text-align: center; }
}

/* ── 16. ESPACE CLIENT (profil) — mobile ── */
@media (max-width: 480px) {
  .espace-main  { padding: 20px 16px !important; }
  .fav-grid     { grid-template-columns: 1fr !important; }
}

/* ── 17. AUTH PAGES (connexion/inscription) — petits mobiles ── */
@media (max-width: 480px) {
  .auth-right { padding: 40px 20px !important; }
}
