/* ===================================================
   LYKON — Premium Redesign CSS
   Inspired by Landio · Glassmorphism · Gold Gradient
   =================================================== */

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #0a0a0a;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --silver: #6d6d6d;
  --silver-lt: #9a9a9a;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --gold-a: #e8d199;
  --gold-b: #9b7625;
  --gold-grad: linear-gradient(135deg, #e8d199, #9b7625);
  --gold-grad-r: linear-gradient(135deg, #9b7625, #e8d199);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 12px 50px rgba(232, 209, 153, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}



h1,
h2,
h3,
h4,
h5 {
  font-family: 'Google Sans Flex', 'Google Sans', 'Poppins', sans-serif;
  line-height: 1.12;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-b);
  border-radius: 2px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== GOLD GRADIENT UTILS ===== */
.g-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.g-border-wrap {
  position: relative;
  border-radius: var(--radius);
}

.g-border-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.g-border-wrap:hover::before {
  opacity: 1;
}

/* ===== GLASSMORPHISM CARD ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: backdrop-filter 0.4s, box-shadow 0.4s, border-color 0.4s, transform 0.3s;
}

.glass:hover {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 209, 153, 0.3);
  transform: translateY(-4px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.up {
  opacity: 1;
  transform: translateY(0);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal-l.up {
  opacity: 1;
  transform: translateX(0);
}

.reveal-r {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal-r.up {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SECTION DEFAULTS ===== */
section {
  padding: 110px 0;
}

.s-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-a);
  margin-bottom: 20px;
}

.s-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-grad);
}

.s-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 500;
  margin-bottom: 20px;
}

.s-sub {
  font-size: 16px;
  color: var(--silver-lt);
  max-width: 560px;
  line-height: 1.8;
}

.s-center {
  text-align: center;
}

.s-center .s-label {
  justify-content: center;
}

.s-center .s-sub {
  margin: 0 auto;
}

/* ===== DIVIDER ===== */
.g-divider {
  width: 56px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}

.g-divider.centered {
  margin: 20px auto 0;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-grad);
  color: #0a0a0a;
  padding: 15px 36px;
  font-family: 'Google Sans Flex', 'Google Sans', 'Inter', sans-serif;
  font-weight: 550;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: opacity 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(232, 209, 153, 0.25);
}

.btn-gold:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 209, 153, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-a);
  padding: 14px 34px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(232, 209, 153, 0.35);
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}

.btn-outline:hover {
  background: rgba(232, 209, 153, 0.07);
  border-color: var(--gold-a);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 70px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  border-color: var(--border);
}

.logo img {
  height: 35px;
  width: auto;
}

/* ===== NAV PILL (centre) ===== */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50px;
  padding: 8px 24px;
}

.nav-pill li a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #a0a0a0;
  padding: 6px 14px;
  border-radius: 50px;
  transition: color 0.3s;
  position: relative;
  display: block;
}

.nav-pill li a:hover {
  background: linear-gradient(135deg, #e8d199, #9b7625);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAV RIGHT (Contact + hamburger) ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

/* Protect CTA button in nav from active-link JS color override */
.nav-right .btn-gold,
.nav-right .btn-gold:hover {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}

/* Hamburger → X quand menu ouvert */
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 998;
}

.mobile-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver-lt);
  display: block;
  padding: 18px 0;
  text-align: center;
  width: 100%;
  transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--gold-a);
}

.mobile-menu.open {
  display: flex;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #000000);
  z-index: 1;
  pointer-events: none;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.96;
  filter: grayscale(40%);
}


.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 35%, rgba(232, 209, 153, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 90%, rgba(155, 118, 37, 0.04) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 209, 153, 0.07), transparent 90%);
  top: -120px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 118, 37, 0.05), transparent 90%);
  bottom: -80px;
  left: -80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-lt);
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  flex: 1;
  max-width: 50px;
  height: 1px;
  background: var(--gold-grad);
  opacity: 0.6;
}



.hero-title span.g-text {
  display: block;
}

.hero-title {
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.12;
  text-transform: none;
  margin-bottom: 36px;
}

.hero-fixed {
  display: block;
  background: linear-gradient(135deg, #e8d199, #9b7625);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  display: block;
}

.hero-slide {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(135deg, #e8d199, #9b7625);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.hero-slide.exit {
  opacity: 0;
  transform: translateY(-40px);
  position: relative;
}

.hero-sub-gold {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  color: var(--gold-a);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.hero-sub-silver {
  font-size: clamp(15px, 1.8vw, 19px);
  color: #a0a0a0;
  font-weight: 400;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 52px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232, 209, 153, 0.06);
  border: 1px solid rgba(232, 209, 153, 0.2);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-a);
}

.badge svg {
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-pulse {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold-a), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: .2
  }

  50% {
    opacity: 1
  }
}

/* ===== MISSION ===== */
#mission {
  background: #ffffff;
}


.mission-lead {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--silver-lt);
  line-height: 1.9;
  margin: 0;
  text-align: justify;
}

.mission-lead strong {
  color: var(--white);
  font-weight: 600;
}


#mission .mission-lead,
#mission .pillar-text {
  color: #444444;
}

#mission .s-title {
  background: linear-gradient(135deg, #e8d199, #9b7625);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  order: 2;
  gap: 16px;
}

.mission-tagline {
  font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: #222222;
  line-height: 1.5;
  margin: 0 0 24px 0;
  display: block;
  width: 100%;
}

.mission-text {
  display: flex;
  order: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}


.pillar {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(50% 50% at 93.7% 8.1%, rgba(184, 199, 217, 0.08) 0%, rgba(4, 7, 13, 0) 100%);
  pointer-events: none;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 209, 153, 0.3);
  box-shadow: 0 12px 50px rgba(232, 209, 153, 0.1);
}


.pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 209, 153, 0.3);
  box-shadow: 0 12px 50px rgba(232, 209, 153, 0.1);
}

.pillar-ico svg {
  width: 28px;
  height: 28px;
  stroke: #e8d199;
}

.pillar-name {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.pillar-text {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;

}



/* ===== CHIFFRES ===== */
#chiffres {
  background: linear-gradient(180deg, #100f0f 0%, #000000 100%);
  padding-bottom: 0;
}

#chiffres {
  padding-bottom: 40px;
}

@keyframes mapPulse {

  0%,
  100% {
    opacity: 0.06;
  }

  50% {
    opacity: 0.14;
  }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: #111111;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 40px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding: 28px 24px;
  transition: opacity 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(232, 209, 153, 0.15);
  border-color: rgba(232, 209, 153, 0.3);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}


.stat-card:hover::before {
  opacity: 1;
}

.stat-num {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(135deg, #e8d199, #9b7625);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: 14px;
  color: var(--silver-lt);
  line-height: 1.6;
}


/* ===== ACCROCHE ===== */
#accroche {
  background: linear-gradient(180deg, #000000 0%, #100f0f 100%);
  padding-top: 0;
}

#accroche {
  padding-top: 0px;
}

#accroche-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
}

#accroche-canvas-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.12;
}

#accroche {
  position: relative;
  overflow: hidden;
}

.accroche-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.accroche-titre {
  font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
}


.accroche-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accroche-left {
  text-align: right;
  padding-right: 0;
}

.accroche-mot {
  font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600;
  background: linear-gradient(135deg, #e8d199, #9b7625);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.accroche-desc {
  font-size: 24px;
  font-weight: 100;
  color: var(--silver);
  margin-top: 8px;
  font-weight: 300;
}

/* ===== TICKER ===== */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
  padding: 20px 0;
  border-top: 1px solid rgba(232, 209, 153, 0.1);
  border-bottom: 1px solid rgba(232, 209, 153, 0.1);
}

.ticker {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(232, 209, 153, 0.6);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-sep {
  color: rgba(232, 209, 153, 0.3) !important;
  font-size: 10px !important;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

/* ===== EXPERTISES ===== */
#expertises {
  background: #ffffff;
}

#expertises .s-title {
  background: linear-gradient(135deg, #e8d199, #9b7625);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exp-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s, background 0.35s;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(232, 209, 153, 0.15);
  border-color: rgba(232, 209, 153, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

/* Gold border top on hover */
.exp-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity 0.4s;
}

.exp-card:hover::after {
  opacity: 1;
}

/* Gold border via wrapper */
.exp-card:hover {
  border-color: rgba(232, 209, 153, 0.2);
}

.exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(232, 209, 153, 0.06);
  border: 1px solid rgba(232, 209, 153, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, border-color 0.3s;
}

.exp-icon svg {
  color: #0a0a0a;
  stroke: #0a0a0a;
}

.exp-card:hover .exp-icon {
  background: rgba(232, 209, 153, 0.12);
  border-color: rgba(232, 209, 153, 0.35);
}

.exp-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.exp-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.8;
  padding-bottom: 10px
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.exp-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #6d6d6d;
  background: transparent;
  border: 1px solid rgba(109, 109, 109, 0.25);
  border-radius: 10px;
  padding: 3px 10px;
  letter-spacing: 0.5px;
}

.exp-fields-label {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(155, 118, 37, 0.7);
  margin-bottom: 10px;
  display: block;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 8px;
}

#expertises .s-label {
  color: #9b7625;
}

#expertises .s-sub {
  color: #444444;
}

#expertises .exp-title {
  color: #0a0a0a;
}

#expertises .exp-desc {
  color: #555555;
}


/* ===== EXPERTISES SLIDER  (base — desktop unchanged) ===== */
.exp-slider-wrap {
  position: relative;
}


.exp-next-btn {
  display: none;
}

.exp-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(100, 100, 100, 0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.exp-dot.active {
  background: var(--gold-a);
  transform: scale(1.35);
}


/* ===== PROCESSUS PROGRESS (base — masqué desktop) ===== */
.steps-slider-wrap {
  overflow: visible;
}

.steps-mobile-progress {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.smp-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 209, 153, 0.12);
  border: 1px solid rgba(232, 209, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.smp-dot.active {
  background: var(--gold-grad);
  border-color: transparent;
  box-shadow: 0 0 12px rgba(232, 209, 153, 0.4);
}

.smp-num {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-a);
}

.smp-dot.active .smp-num {
  color: #0a0a0a;
}

.smp-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: rgba(232, 209, 153, 0.2);
}


#methodologie {
  background: var(--bg);
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232, 209, 153, 0.3), rgba(232, 209, 153, 0.5), rgba(232, 209, 153, 0.3), transparent);
  z-index: 0;
  display: block;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
  display: block;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-grad);
  margin: 0 auto 28px;
  box-shadow: 0 0 0 5px rgba(232, 209, 153, 0.12), 0 0 0 10px rgba(232, 209, 153, 0.05);
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  lang: fr;

}

.steps-next-btn {
  display: none;
  /* masqué desktop */
}


@media(max-width: 767px) {
  .steps-next-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: rgba(232, 209, 153, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 12px 0 0;
    text-align: right;
    margin-left: auto;
    margin-right: 28px;
    transition: color 0.3s;
  }

  .steps-next-btn:hover {
    color: var(--gold-a);
  }
}

/* ===== REALISATIONS ===== */

#realisations {
  background: #0a0a0a;
  padding: 80px 0 0 0;
  overflow: hidden;
}


#realisations {
  position: relative;
}


.portfolio-fade-top {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #0a0a0a, transparent) !important;
  pointer-events: none;
  z-index: 10;
}

/* Fondu gauche */
.portfolio-track-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #000000, transparent);
  z-index: 5;
  pointer-events: none;
}

/* Fondu droite */
.portfolio-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to left, #000000, transparent);
  z-index: 5;
  pointer-events: none;
}

.portfolio-track-wrap {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.portfolio-track {
  display: grid;
  grid-template-rows: repeat(2, 280px);
  grid-auto-flow: column dense;
  grid-auto-columns: 290px;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0;
  scrollbar-width: none;
  cursor: grab;
  width: 100%;
}

/* Tall — occupe 2 lignes */
.p-card.tall {
  grid-row: span 2;
}

/* Wide — occupe 2 colonnes, 1 ligne */
.p-card.wide {
  grid-column: span 2;
}

/* Small — 1 ligne, 1 colonne (défaut) */
.p-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s;
}

.p-card:hover {
  opacity: 0.9;
}

.p-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
  display: block;
}

.p-card:hover img {
  transform: scale(1.03);
}

.p-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.p-card::before {
  content: '▶';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: rgba(255, 255, 255, 0);
  z-index: 2;
  transition: color 0.3s;
  pointer-events: none;
}

.p-card:hover::before {
  color: rgba(255, 255, 255, 0.85);
}

.p-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  z-index: 3;
}

.p-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(232, 209, 153, 0.9);
  display: block;
  margin-bottom: 5px;
}

.p-title {
  font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* Flèches */
.portfolio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(232, 209, 153, 0.2);
  color: #e8d199;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-arrow:hover {
  background: rgba(232, 209, 153, 0.15);
}

.portfolio-arrow.right {
  right: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-arrow.left {
  left: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.video-lightbox {
  display: none;
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16/9;
}

.lightbox-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}


/* ===== FORMULES ===== */
#formules {
  background: linear-gradient(180deg, #000000 0%, #191814 100%);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(232, 209, 153, 0.15);
  border-color: rgba(232, 209, 153, 0.3);
}

.form-card.featured {
  border-color: rgba(232, 209, 153, 0.35);
  background: rgba(232, 209, 153, 0.05);
}

.form-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
}

.form-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--gold-grad);
  color: #0a0a0a;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.form-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 6px;
}

.form-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.form-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 28px;
}

.form-incl-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}

.form-list {
  list-style: none;
  margin-bottom: 36px;
}

.form-list li {
  font-size: 13px;
  color: var(--silver-lt);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-list li::before {
  content: '◆';
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}



/* ===== CONTACT ===== */
#contact {
  background: #ffffff;
}

#contact .s-label {
  color: #9b7625;
}

#contact .contact-title,
#contact .s-title {
  color: #0a0a0a;
}

#contact .contact-sub {
  color: #444444;
}

#contact .contact-email {
  color: #9b7625;
}

#contact input,
#contact select,
#contact textarea {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #0a0a0a;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: #888888;
}

#contact label,
#contact .form-label {
  color: #444444;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s;
}

.contact-email:hover {
  opacity: 0.75;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9b7625;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: opacity 0.3s;
}

.contact-email-link:hover {
  opacity: 0.7;
}

.contact-email-link svg {
  width: 18px;
  height: 18px;
  stroke: #9b7625;
}

.f-group {
  margin-bottom: 18px;
}

.f-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  resize: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: rgba(232, 209, 153, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(232, 209, 153, 0.08);
}

.f-group textarea {
  height: 140px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

select option {
  background: #111;
}

#formOk {
  display: none;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.foot-links a,
.foot-bottom a,
.foot-bottom p,
.foot-brand-top p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.foot-nav-ttl {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(232, 209, 153, 0.6);
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 10px;
}

.foot-brand-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.foot-logo-img {
  height: 100px;
  width: auto;
  flex-shrink: 0;
}

.foot-brand-top p {
  font-size: 13px;
  color: #6d6d6d;
  line-height: 1.7;
  margin: 0;
}

.foot-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  align-items: start;
}

.foot-brand p {
  font-size: 13px;
  color: var(--silver);
  margin-top: 16px;
  line-height: 1.85;
  max-width: 260px;
}

.foot-nav-ttl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.foot-links a {
  font-size: 13px;
  color: var(--silver);
  transition: color 0.3s;
}

.foot-links a:hover {
  color: var(--gold-a);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.soc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(232, 209, 153, 0.2);
  background: rgba(232, 209, 153, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b7625;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.soc:hover {
  border-color: rgba(232, 209, 153, 0.4);
  color: #e8d199;
  background: rgba(232, 209, 153, 0.12);
}

.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom p,
.foot-bottom a {
  font-size: 12px;
  color: var(--silver);
  transition: color 0.3s;
}

.foot-bottom a:hover {
  color: var(--gold-a);
}

.foot-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ===== MODAL ===== */

.modal-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-a);
  text-align: center;
  margin-bottom: 28px;
}

.modal-logo img {
  height: 150px;
  width: auto;
}

.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-bg.open {
  display: flex;
}

.modal-box {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 209, 153, 0.2);
  border-radius: var(--radius);
  max-width: 580px;
  width: 100%;
  padding: 52px 48px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: var(--silver);
  font-size: 22px;
  cursor: pointer;
  transition: color .3s;
}

.modal-close:hover {
  color: var(--gold-a);
}

.modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.modal-box p {
  font-size: 15px;
  color: var(--silver-lt);
  line-height: 1.85;
}

/* ===== COOKIES ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid rgba(232, 209, 153, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px 0;
}


.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.cookie-text p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #a0a0a0;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: #e8d199;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.cookie-text a:hover {
  opacity: 0.7;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-refuse {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #6d6d6d;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.3s, color 0.3s;
}

.cookie-btn-refuse:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #a0a0a0;
}

.cookie-btn-accept {
  background: rgba(232, 209, 153, 0.08);
  border: 1px solid rgba(232, 209, 153, 0.25);
  color: #e8d199;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s;
}

.cookie-btn-accept:hover {
  background: rgba(232, 209, 153, 0.15);
  border-color: rgba(232, 209, 153, 0.4);
}

/* ===== MENTIONS LÉGALES ===== */

.modal-box p {
  text-align: justify;
}

.modal-box p {
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.8;
}


/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {

  .exp-grid,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .foot-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

}

@media(min-width:768px) and (max-width:1024px) {

  /* ── PROCESSUS — texte trop compressé ── */
  .steps-wrap {
    gap: 16px;
  }

  .step {
    padding: 0 8px;
  }

  .step-desc {
    font-size: 11px;
    text-align: center;
    hyphens: none;
    -webkit-hyphens: none;
  }

  .step-title {
    font-size: 12px;
    margin-bottom: 8px;
  }

  /* ── OFFRES — 3 cartes alignées ── */
  .form-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    align-items: stretch;
  }

  .form-card {
    padding: 28px 20px;
    height: 100%;
  }

  .form-card .form-name {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .form-card .form-desc {
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
    /* ← supprime le justify */
  }

  .form-card .form-list li {
    font-size: 13px;
    line-height: 1.6;
    flex: 1
  }

  .form-card .form-incl-lbl {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .form-card .btn-outline,
  .form-card .btn-gold {
    font-size: 11px;
    padding: 12px 20px;
    text-align: center;
  }

  .form-card.featured {
    position: relative;
    padding-top: 44px;
    overflow: visible;
  }

  .form-badge {
    position: absolute;
    top: 16px;
    text-align: center;
    white-space: nowrap;
    transform: none;
  }



  /* ── EXPERTISES — 2 colonnes OK mais espacement ── */
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* ── MISSION — grille piliers + texte ── */
  .mission-body {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .mission-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pillar {
    padding: 20px 16px;
  }

  .pillar-text {
    font-size: 11px;
    line-height: 1.7;
  }

  .mission-lead {
    text-align: left;
    font-size: 14px;
    line-height: 1.7;
    padding-right: 50px;
  }

  .mission-tagline {
    font-size: 18px;
  }

  /* ── CHIFFRES — 4 colonnes ── */
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  /* ── CONTACT — 2 colonnes ── */
  .contact-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* ── FOOTER ── */

  /* Paris France — forcer gris */
  .foot-links li span {
    color: #6d6d6d !important;
    -webkit-text-fill-color: #6d6d6d !important;
    background: none !important;
  }

  .foot-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .foot-bottom-links {
    display: flex;
    gap: 24px;
  }

  .foot-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

}

@media(max-width:767px) {
  section {
    padding: 72px 0;
  }

  /* ── NAV ── */
  #navbar {
    padding: 0 20px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }

  #navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--border);
  }

  .nav-right .btn-gold {
    display: none;
  }

  .nav-pill {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    height: 25px;
  }

  /* ── HERO ── */
  #hero {
    padding: 80px 0 60px;
  }

  .hero-eyebrow {
    font-size: 7px;
    letter-spacing: 2.5px;
    white-space: nowrap;
    margin-bottom: 16px;
    gap: 8px;
  }

  .hero-eyebrow-line {
    max-width: 30px;
  }

  .hero-title {
    font-size: clamp(24px, 10vw, 44px);
    line-height: 1.2;
  }

  .hero-title .hero-fixed:first-child {
    margin-bottom: 8px;
  }

  .hero-sub-silver {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .hero-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .badge {
    font-size: 9px;
    padding: 7px 14px;
  }

  .hero-cta .btn-gold {
    padding: 12px 24px;
    font-size: 11px;
  }

  /* ── CHIFFRES ── */
  #chiffres {
    padding: 56px 0 32px;
  }

  #chiffres .s-sub {
    font-size: 14px;
    line-height: 1.6;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    min-height: 110px;
    padding: 20px 16px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .stat-num {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 4px;
  }

  .stat-lbl {
    font-size: 12px;
  }

  /* ── ACCROCHE ── */
  #accroche {
    padding: 48px 0 0;
    overflow: hidden;
  }

  .accroche-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
    text-align: center;
  }

  .accroche-left {
    text-align: center;
  }

  .accroche-titre {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 8px;
  }

  .accroche-right {
    align-items: center;
  }

  .accroche-mot {
    font-size: clamp(26px, 7vw, 42px);
  }

  .accroche-desc {
    font-size: 16px;
  }

  .ticker-wrap {
    margin-top: 36px;
    overflow: hidden;
    max-width: 100%;
  }

  .ticker span {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  /* ── MISSION ── */
  .mission-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .mission-text {
    order: 1;
    margin-top: 0;
    align-items: flex-start;
  }

  .mission-pillars-wrap {
    order: 2;
    width: 100vw;
    margin-left: -28px;
    padding-left: 28px;
  }

  .mission-lead {
    text-align: left;
    font-size: 14px;
  }

  .mission-tagline {
    font-size: clamp(17px, 5vw, 22px);
  }

  .pillar-name {
    font-size: 12px;
  }

  .pillar-text {
    font-size: 12px;
  }

  .mission-pillars {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 8px 28px 12px 28px;
    scrollbar-width: none;
    width: 100%;
    box-sizing: content-box;
    touch-action: pan-x;
  }

  .mission-pillars::after {
    content: '';
    flex: 0 0 4px;
    display: block;
  }

  .mission-pillars::-webkit-scrollbar {
    display: none;
  }

  .mission-pillars .pillar {
    flex: 0 0 82%;
    scroll-snap-align: start;
    border-radius: 16px !important;
    min-height: 150px;
    height: 150px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(155, 118, 37, 0.25);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mission-pillars .pillar:active {
    border-color: rgba(155, 118, 37, 0.6);
    box-shadow: 0 4px 20px rgba(155, 118, 37, 0.12);
  }

  .pillar-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 0 0;
    width: 100vw;
  }

  .pillar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(155, 118, 37, 0.25);
    display: block;
  }

  .pillar-dot.active {
    background: #9b7625;
    transform: scale(1.3);
  }

  /* ── EXPERTISES ── */
  #expertises {
    padding: 56px 0;
  }

  #expertises .s-center {
    margin-bottom: 32px !important;
  }

  .s-sub {
    font-size: 14px;
  }

  .exp-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 5% 8px;
    scrollbar-width: none;
  }

  .exp-grid::-webkit-scrollbar {
    display: none;
  }

  .exp-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    padding: 24px 20px;
    height: 460px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }

  .exp-counter {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(155, 118, 37, 0.6);
    font-family: 'Poppins', sans-serif;
  }

  .exp-title {
    font-size: 14px;
  }

  .exp-icon {
    margin-bottom: 16px;
  }

  .exp-desc {
    font-size: 12px;
    flex: 1;
  }

  .exp-tags {
    margin-top: auto;
  }

  .exp-tag {
    font-size: 9px;
    padding: 2px 8px;
  }

  .exp-next-btn {
    display: block;
    background: none;
    border: none;
    color: rgba(155, 118, 37, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 8px 0 0;
    text-align: right;
    transition: color 0.3s;
    margin-top: 8px;
  }

  .exp-dots {
    display: flex;
  }

  /* ── PROCESSUS ── */
  #methodologie {
    padding: 56px 0;
  }

  .steps-mobile-progress {
    display: flex;
  }

  .steps-slider-wrap {
    overflow: hidden;
  }

  .steps-wrap {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .steps-wrap::-webkit-scrollbar {
    display: none;
  }

  .step {
    flex: 0 0 100%;
    scroll-snap-align: start;
    text-align: left;
    padding: 24px 28px;
    box-sizing: border-box;
  }

  .step-num {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    color: unset;
  }

  .step-dot {
    display: none;
  }

  .step-title {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 12px;
  }

  .step-desc {
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
    font-size: 12px;
    line-height: 1.7;
  }

  .steps-line {
    display: none;
  }

  .steps-next-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: rgba(232, 209, 153, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 12px 0 0;
    margin-left: auto;
    margin-right: 28px;
    transition: color 0.3s;
  }

  /* ── RÉALISATIONS ── */
  #realisations {
    padding: 60px 0 0;
  }

  #realisations .s-center {
    margin-bottom: 32px !important;
  }

  .portfolio-track {
    grid-template-rows: repeat(2, 200px);
    grid-auto-columns: 200px;
  }

  .portfolio-arrow {
    top: calc((200px * 2 + 6px) / 2);
    width: 44px;
    height: 44px;
    z-index: 20;
  }

  .portfolio-arrow.left {
    left: 6px;
  }

  .portfolio-arrow.right {
    right: 6px;
  }

  .portfolio-track-wrap::before,
  .portfolio-track-wrap::after {
    width: 60px;
  }

  .p-tag {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .p-title {
    font-size: 11px;
  }

  .p-card-info {
    padding: 12px 14px;
  }

  /* ── GRILLES ── */
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar:first-child,
  .pillar:last-child {
    border-radius: 0;
  }

  .exp-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .port-grid {
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    max-width: 100%;
  }

  .foot-inner {
    grid-template-columns: 1fr;
  }

  .f-row {
    grid-template-columns: 1fr;
  }

  /* ── FORMULES ── */
  #formules .s-title {
    font-size: clamp(28px, 7vw, 32px);
    line-height: 1.2;
  }

  .form-slider-wrap {
    margin: 0 -28px;
    overflow: hidden;
  }

  .form-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 28px;
    scrollbar-width: none;
  }

  .form-grid::-webkit-scrollbar {
    display: none;
  }

  .form-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    padding: 28px 24px;
  }

  .form-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .form-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(232, 209, 153, 0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }

  .form-dot.active {
    background: var(--gold-a);
    transform: scale(1.3);
  }

  .form-card .form-name {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .form-card .form-desc {
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .form-card .form-incl-lbl {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .form-card .form-list li {
    font-size: 11px;
    padding: 7px 0;
  }

  .form-card .btn-outline,
  .form-card .btn-gold {
    font-size: 11px;
    padding: 10px 20px;
    letter-spacing: 1.5px;
  }

  /* ── CONTACT ── */
  .contact-wrap {
    gap: 32px;
  }

  .f-row {
    grid-template-columns: 1fr;
    gap: 0;
  }


  /* ── FOOTER ── */
  #footer {
    padding-bottom: 0;
    padding: 20px 0 32px;
  }

  .foot-brand-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .foot-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 0;
  }

  .foot-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    align-items: center;
    text-align: center;
  }

  .foot-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
  }

  .foot-bottom-links a {
    font-size: 11px;
    text-align: center;
  }

  .foot-links li span {
    color: #6d6d6d !important;
    -webkit-text-fill-color: #6d6d6d !important;
  }

  .foot-brand p {
    font-size: 13px;
    text-align: left;
  }

  /* ── MODALS ── */
  .modal-box {
    padding: 28px 20px;
    margin: 16px;
    max-height: 85vh;
  }

  .modal-box .s-label {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .modal-box h2,
  .modal-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .modal-box h4 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .modal-box p,
  .modal-box li {
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
    /* ← supprime le justify qui crée des espaces disgracieux */
    hyphens: none;
    -webkit-hyphens: none;
  }

  .modal-logo {
    width: 80px;
    /* ← logo plus petit */
    margin-bottom: 16px;
  }


  /* ── COOKIE BANNER ── */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
  }

  .cookie-text {
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-text p {
    font-size: 12px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ── 480px ── */
@media(max-width:480px) {

  .port-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero-title {
    letter-spacing: -2px;
  }

  .modal-box {
    padding: 36px 24px;
  }
}