/* =========================================================
   MAÑANIKA — ONE PAGE
   Direction artistique : premium / naturel / éditorial
   ========================================================= */

:root {
  --ink: #1c0f06;
  --ink-soft: #3d2b1f;
  --cream: #f5efe3;
  --sand: #e8ddc9;
  --paper: #efe6d5;
  --white: #fffdf8;
  --gold: #c4a035;
  --gold-light: #e2c96f;
  --green: #35512f;
  --muted: #7a6a50;
  --line: rgba(28, 15, 6, .14);
  --shadow: 0 24px 70px rgba(28, 15, 6, .11);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open { overflow: hidden; }

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

button,
a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; cursor: pointer; }

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

::selection {
  background: rgba(196,160,53,.3);
  color: var(--ink);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 150px) 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h2 {
  margin-bottom: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: .96;
}

h2 em {
  color: var(--gold);
  font-style: italic;
}

.lead {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.55;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateX(5px); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease;
}

.button:hover { transform: translateY(-2px); }

.button-dark {
  background: var(--ink);
  color: var(--cream);
}

.button-dark:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ================= Progress ================= */

.site-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.site-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

/* ================= Header ================= */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #00000080;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Conserve le fond clair au scroll */
.site-header.scrolled {
  background: rgba(12, 10, 8, 0.75); 
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1440px, calc(100% - 42px));
  padding: 24px;
  min-height: 76px;
  margin: auto;
  transition: min-height 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled .header-inner {
  min-height: 54px;
  padding: 9px 24px;
}

.header-logo {
  justify-self: center;
  display: flex;
  flex-direction: column;   /* Empile l'image et le texte verticalement */
  align-items: center;        /* Centre l'image et le texte */
}

.header-logo img {
  width: clamp(150px, 17vw, 205px); /* Ajuste la largeur de l'image uniquement */
  height: auto;
  background: transparent;
  filter: brightness(1.35) contrast(1.1);
  transition: width 0.35s ease, filter 0.3s ease;
}

.site-header.scrolled .header-logo img {
  width: clamp(118px, 12vw, 150px);
}

.header-logo:hover img {
  filter: brightness(1.5) contrast(1.15);
}

.header-logo-text {
  display: block;
  white-space: nowrap;      
  font-size: 10px;
  font-weight: 500;       
  letter-spacing: 0.12em;   
  color: var(--gold-light);       
  margin-top: 4px;           
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  opacity: 0.95;
  transition: opacity 0.25s ease, font-size 0.35s ease, margin-top 0.35s ease;
}

.site-header.scrolled .header-logo-text {
  font-size: 8px;
  margin-top: 2px;
  opacity: 0.85;
}

/* --- BANDEAU BAS DU HERO --- */
.hero-bottom-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 10;
}

.hero-bottom-banner p {
  max-width: 1100px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.04em;
}

.header-spacer { min-width: 110px; }

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  min-height: 46px;
  padding: 7px 12px 7px 4px;
  border: 0;
  background: transparent;
  color: inherit;
  text-transform: uppercase;
  transition: min-height 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled .menu-trigger {
  min-height: 36px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.menu-trigger-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.menu-trigger-icon {
  display: flex;
  width: 30px;
  flex-direction: column;
  gap: 5px;
}

.menu-trigger-icon span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform .35s var(--ease), width .35s ease;
}

.menu-trigger:hover .menu-trigger-icon span:nth-child(2) { width: 70%; }

/* ================= Side menu ================= */

.menu-backdrop {
  position: fixed;
  z-index: 108;
  inset: 0;
  background: rgba(17,9,4,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
  backdrop-filter: blur(4px);
}

.side-menu {
  position: fixed;
  z-index: 109;
  top: 0;
  left: 0;
  width: min(440px, 92vw);
  height: 100dvh;
  padding: 34px 32px 26px;
  overflow-y: auto;
  background: var(--cream);
  box-shadow: 24px 0 80px rgba(17,9,4,.18);
  transform: translateX(-102%);
  transition: transform .65s var(--ease);
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

body.menu-open .side-menu { transform: translateX(0); }

.side-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.side-menu-head h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
}

.menu-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  transition: background .25s ease, color .25s ease;
}

.menu-close:hover {
  background: var(--ink);
  color: var(--cream);
}

.side-menu-actions {
  display: grid;
  gap: 8px;
  padding: 24px 0;
}

.side-action {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease;
}

.side-action:hover {
  transform: translateX(5px);
  border-color: rgba(196,160,53,.6);
  background: var(--white);
}

.side-action-icon {
  color: var(--gold);
  font-size: 19px;
}

.side-action small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .15em;
}

.side-action span:not(.side-action-icon) {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.side-action b {
  color: var(--gold);
  font-weight: 400;
}

.side-nav {
  display: flex;
  flex-direction: column;
}

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(28,15,6,.08);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  transition: color .25s ease, padding-left .25s var(--ease);
}

.side-nav a span {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: .15em;
}

.side-nav a:hover {
  padding-left: 8px;
  color: var(--gold);
}

.side-menu-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .12em;
  line-height: 1.6;
  text-transform: uppercase;
}

/* ================= Hero ================= */

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

/* Image de fond : Plantation de vanille */
.hero-image {
  position: absolute;
  inset: 0;
  background: url("/assets/images/hero/vanilleFond.png") center/cover no-repeat;
  filter: brightness(0.75); /* Assombrit légèrement l'image pour faire ressortir le texte */
}

/* Filigrane central : Fleur de vanille */
.hero-watermark {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(24deg);
  width: min(650px, 85vw);
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
  mix-blend-mode: screen; /* Fait disparaître le fond noir de l'image et ne garde que la fleur blanche */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,15,6,.35), rgba(28,15,6,.18) 35%, rgba(28,15,6,.72)),
    radial-gradient(circle at 50% 45%, rgba(196,160,53,.16), transparent 38%);
}

.hero-frame {
  position: absolute;
  inset: 100px 4vw 34px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 42px));
  text-align: center;
}

.hero-kicker {
  margin-bottom: 16px;
  color: rgba(245,239,227,.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.04em;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-rule {
  width: 64px;
  height: 1px;
  margin: 28px auto 18px;
  background: var(--gold-light);
}

.hero-location {
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.hero-description {
  width: min(550px, 100%);
  margin: auto;
  color: rgba(245,239,227,.76);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-scroll i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(245,239,227,.4);
  font-style: normal;
  transition: transform .3s var(--ease), background .3s ease;
}

.hero-scroll:hover i {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(4px);
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 42px;
  writing-mode: vertical-rl;
  color: rgba(245,239,227,.55);
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

/* ================= Univers ================= */

.univers-section {
  position: relative;
  background-color: #f8f6f0; /* Fond crème clair conforme à la maquette */
  color: #332d27;
  overflow: hidden;
}

/* --- Bannière supérieure --- */
.univers-banner {
  position: relative;
  width: 100%;
}

.univers-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.univers-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* Assombrit légèrement la bannière */
}

/* --- Cercles d'images superposés --- */
.univers-circles {
  position: absolute;
  left: 5%;
  bottom: -45px;
  display: flex;
  align-items: center;
  z-index: 5;
}

.univers-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background-color: #000;
}

.univers-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.univers-circle.circle-2 {
  margin-left: -30px; /* Chevauchement du second cercle sur le premier */
  transform: translateY(-20px); /* Décalage vertical pour un effet dynamique */
}

/* --- Corps de section --- */
.univers-body {
  position: relative;
  padding: 70px 0 60px;
}

.univers-container {
  position: relative;
  z-index: 2;
}

/* --- Filigrane central --- */
.univers-watermark {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: min(750px, 90vw);
  pointer-events: none;
  z-index: 1;
  opacity: 0.18; /* Filigrane très doux */
  mix-blend-mode: multiply;
}

.univers-watermark img {
  width: 100%;
  height: auto;
}

/* --- Titre bicolore --- */
.univers-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1.1;
}

.univers-title .text-dark {
  color: #3b2314; /* Marron foncé */
}

.univers-title .text-gold {
  color: #cbb072; /* Couleur or */
  background: linear-gradient(135deg, #d8bc7e 0%, #b3924b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Layout Grille (Texte & Média) --- */
.univers-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Accroche */
.univers-text .univers-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #2b1e16;
  padding-left: 18px;
  border-left: 3px solid #cbb072;
  margin-bottom: 20px;
}

.univers-text .univers-lead strong {
  color: #b3924b;
  letter-spacing: 0.06em;
}

/* Puces / Badges d'engagement */
.univers-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 22px 0;
}

.pillar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(203, 176, 114, 0.12); /* Fond or très subtil */
  border: 1px solid rgba(203, 176, 114, 0.35);
  color: #3b2818;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pillar-dot {
  color: #b3924b;
  font-size: 0.75rem;
}

/* Texte explicatif */
.univers-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4238;
}

.univers-text p:first-child::first-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 4px;
  color: #cbb072;
  font-weight: 700;
}

.univers-text em {
  font-style: normal;
  color: #2b1e16;
  font-weight: 500;
}

/* --- Bloc Droite : Logo + Visuel Produits --- */
.univers-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.univers-brand {
  margin-bottom: 15px;
}

.univers-brand-logo {
  height: 90px;
  width: auto;
  margin: 0 auto 5px;/* Rendu sombre du logo sur fond clair */
}

.univers-brand-tagline {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2a180e;
}

.univers-products-wrapper {
  width: 100%;
  max-width: 380px;
}

.univers-products-img {
  width: 100%;
  height: auto;
  /* Rend le fond noir de l'image de produit transparent sur fond clair */
  mix-blend-mode: multiply; 
}

/* --- Responsive Mobiles / Tablettes --- */
@media (max-width: 992px) {
  .univers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .univers-banner {
    height: 240px;
  }

  .univers-circle {
    width: 100px;
    height: 100px;
  }

  .univers-circles {
    bottom: -35px;
  }

  .univers-body {
    padding-top: 50px;
  }
}

/* ================= About ================= */

.apropos-section {
  position: relative;
  background: linear-gradient(135deg, #1f170e 0%, #120d07 100%);
  color: #e6dfd5;
  padding: 80px 0;
  overflow: hidden;
}

/* --- Filigrane Arrière-plan --- */
.apropos-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: min(850px, 95vw);
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  mix-blend-mode: screen;
}

.apropos-watermark img {
  width: 100%;
  height: auto;
}

.apropos-container {
  position: relative;
  z-index: 2;
}

/* --- Grille Principale (3 Colonnes) --- */
.apropos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.apropos-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- Cartes de Contenu --- */
.apropos-card.text-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(203, 176, 114, 0.2);
  border-radius: 12px;
  padding: 28px 24px;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.apropos-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #cbb072;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(203, 176, 114, 0.25);
  text-transform: uppercase;
}

.apropos-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #d1c7bc;
  margin-bottom: 14px;
}

.apropos-card p:last-child {
  margin-bottom: 0;
}

.apropos-card strong {
  color: #ffffff;
  font-weight: 600;
}

/* --- Liste à puces dorées --- */
.intro-list {
  margin-bottom: 10px !important;
}

.apropos-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.apropos-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #d1c7bc;
  margin-bottom: 8px;
}

.apropos-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #cbb072;
  font-size: 0.75rem;
  top: 1px;
}

.outro-list {
  font-style: italic;
  font-size: 0.88rem !important;
  color: #cbb072 !important;
}

/* --- Cartes Images --- */
.apropos-card.img-card {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(203, 176, 114, 0.3);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.apropos-card.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.apropos-card.img-card:hover img {
  transform: scale(1.05);
}

/* --- Adaptation Mobile & Tablette --- */
@media (max-width: 992px) {
  .apropos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .apropos-col {
    gap: 20px;
  }

  .apropos-card.img-card {
    height: 220px;
  }
}

/* ================= SERVICES & ENGAGEMENTS ================= */
/* =========================================================
   SECTION SERVICES (STYLE ÉDITORIAL / HAUT DE GAMME)
   ========================================================= */

.services {
  position: relative;
  padding: 100px 0;
  color: #e5ded6;
  overflow: hidden;
  background-color: #0c0805; /* Fond de secours très sombre */
}

/* --- Arrière-plan Immersif --- */
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Optionnel : supprimez ces 2 lignes si vous ne voulez pas l'effet parallax (fixe) */
  background-attachment: fixed; 
}

/* Dégradé radial pour un effet "Vignette" élégant (assombrit les bords) */
.services-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12, 8, 5, 0.75) 0%, rgba(8, 5, 3, 0.95) 100%);
}

.services-inner {
  position: relative;
  z-index: 2;
}

/* --- Mise en page : Colonnes Services & Engagements --- */
.services-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.vertical-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(203, 176, 114, 0.3), transparent);
}

/* --- Typographie Haut de Gamme --- */
.section-surtitle {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #cbb072;
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 35px;
}

.section-title em {
  font-style: italic;
  color: #cbb072;
}

.engagements-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8ac9e;
  margin-bottom: 25px;
}

/* --- Listes Éditoriales --- */
.premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  font-size: 0.95rem;
  color: #d1c7bc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}

.premium-list li:last-child {
  border-bottom: none;
}

.premium-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 1.5px;
  background-color: #cbb072;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.premium-list li:hover::before {
  width: 18px;
  background-color: #ffffff;
}

.premium-list li:hover {
  color: #ffffff;
}

.services-goal {
  margin-top: 30px;
  padding: 20px;
  background: rgba(203, 176, 114, 0.05);
  border-left: 2px solid #cbb072;
}

.services-goal p {
  margin: 0;
  font-size: 0.9rem;
  color: #d1c7bc;
  line-height: 1.5;
}

.services-goal strong {
  color: #cbb072;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* --- Zone Prestations (Grand titre en filigrane) --- */

.prestations-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

/* Ajustement pour le filigrane afin qu'il se place bien derrière le nouveau titre */
.prestations-bg-title {
  position: absolute;
  top: -20px; /* Légèrement remonté */
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 700;
  color: rgba(203, 176, 114, 0.04);
  text-transform: lowercase;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.prestations-area {
  position: relative;
  padding-top: 60px;
  border-top: 1px solid rgba(203, 176, 114, 0.15);
  text-align: center;
}

.prestations-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  z-index: 2;
}

.p-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(203, 176, 114, 0.06);
  border: 1px solid rgba(203, 176, 114, 0.25);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.p-item:hover .p-icon {
  background: rgba(203, 176, 114, 0.15);
  border-color: #cbb072;
  transform: translateY(-3px);
}

.p-icon svg {
  transition: transform 0.3s ease;
}

.p-item:hover .p-icon svg {
  transform: scale(1.1);
}

.p-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.p-item p {
  font-size: 0.85rem;
  color: #a89d90;
  margin: 0;
  line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .vertical-divider {
    display: none;
  }

  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .prestations-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= Products ================= */

.export-section {
  position: relative;
  background-color: #12171e; /* Bleu-gris profond de la maquette */
  color: #e5ded6;
  padding: 100px 0;
  overflow: hidden;
}

/* Filigrane d'Orchidée / Fleur de vanille */
.export-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  width: min(850px, 85vw);
  pointer-events: none;
  z-index: 1;
  opacity: 0.12; 
  mix-blend-mode: screen; 
}

.export-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.export-container {
  position: relative;
  z-index: 2;
}

/* Grille 2 Colonnes équilibrée */
.export-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* --- Colonne Gauche --- */
.export-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cbb072;
  margin: -20px 0 25px 0;
}

.export-text p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #b8c1cc;
  margin-bottom: 20px;
}

/* Boutons d'Action */
.export-actions {
  display: flex;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn-outline-gold {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #cbb072;
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: #cbb072;
  color: #12171e;
  box-shadow: 0 5px 15px rgba(203, 176, 114, 0.25);
}

.btn-solid-gold {
  display: inline-block;
  padding: 12px 28px;
  background-color: rgba(203, 176, 114, 0.15);
  border: 1px solid rgba(203, 176, 114, 0.4);
  border-radius: 30px;
  color: #cbb072;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-solid-gold:hover {
  background-color: rgba(203, 176, 114, 0.3);
  color: #ffffff;
}

/* --- Colonne Droite : Galerie Accordéon --- */
.accordion-strips {
  display: flex;
  gap: 10px;
  height: 480px;
  width: 100%;
}

.strip-item {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(203, 176, 114, 0.2);
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
  cursor: pointer;
}

.strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(0.7) grayscale(20%);
}

.strip-caption {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(18, 23, 30, 0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.strip-caption span {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: #cbb072;
}

.strip-caption h4 {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 4px 0 0 0;
  white-space: nowrap;
}

/* Effets au Survol de l'Accordéon */
.strip-item:hover {
  flex: 3; /* Élargit la bande survolée */
  border-color: #cbb072;
}

.strip-item:hover .strip-bg {
  filter: brightness(1) grayscale(0%);
  transform: scale(1.03);
}

.strip-item:hover .strip-caption {
  opacity: 1;
}

/* --- RESPONSIVITÉ --- */
@media (max-width: 992px) {
  .export-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accordion-strips {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .accordion-strips {
    height: 320px;
    gap: 6px;
  }

  .strip-caption h4 {
    display: none; /* Caches les titres texte sur très petit écran pour ne garder que les numéros */
  }
}

/* ================= SECTION CATALOGUE PRODUIT ================= */

.catalog-section {
  background-color: #e8e3dc; /* Un grège clair et très élégant */
  padding: 100px 0;
  color: #2b2520; /* Texte marron/gris très foncé pour la lisibilité */
  overflow: hidden;
}

.catalog-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* La partie gauche prend un peu plus de place */
  gap: 70px;
  align-items: center;
}

/* --- PARTIE GAUCHE : GRILLE PRODUITS --- */
.catalog-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.modern-card {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(203, 176, 114, 0.2);
  cursor: pointer;
}

/* Image rectangulaire plein format */
.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

/* Badge suspendu en haut à gauche */
.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(18, 23, 30, 0.75);
  color: #cbb072;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(203, 176, 114, 0.4);
  backdrop-filter: blur(6px);
}

/* Overlay dégradé sombre en bas de carte */
.card-overlay {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(14, 18, 24, 0.96) 0%,
    rgba(14, 18, 24, 0.82) 65%,
    rgba(14, 18, 24, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: padding 0.4s ease;
}

/* Titre et étoiles toujours visibles */
.card-stars {
  color: #cbb072;
  font-size: 0.85rem;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* BLOC EN TRANSLATION VERTICALE (HOVER) */
.card-hover-details {
  max-height: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #c9c0b5;
  margin: 12px 0;
}

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-specs span {
  font-size: 0.7rem;
  color: #ffffff;
  background: rgba(203, 176, 114, 0.2);
  border: 1px solid rgba(203, 176, 114, 0.35);
  padding: 3px 8px;
  border-radius: 4px;
}

/* --- EFFETS SURVOL (HOVER STATE) --- */
.modern-card:hover .card-bg-img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.modern-card:hover {
  border-color: #cbb072;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.modern-card:hover .card-hover-details {
  max-height: 160px; /* Déplie le contenu */
  opacity: 1;
  transform: translateY(0); /* Remonte à sa position initiale */
}

/* --- PARTIE DROITE : AMAS DE BULLES & TEXTE --- */
.catalog-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Le conteneur de bulles avec positionnement précis */
.bubble-cluster {
  position: relative;
  width: 100%;
  height: 420px;
  margin-bottom: 30px;
}

/* Style de base d'une bulle */
.bubble {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  /* L'astuce : une bordure épaisse de la même couleur que le fond 
     pour créer un effet de détourage parfait entre les images ! */
  border: 6px solid #e8e3dc; 
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.bubble:hover {
  transform: scale(1.05);
  z-index: 10 !important; /* Passe au-dessus au survol */
}

/* Tailles et positions de chaque bulle (comme sur votre maquette) */
.b-miel {
  width: 200px;
  height: 200px;
  right: 0;
  top: 30px;
  z-index: 3;
}

.b-curcuma {
  width: 140px;
  height: 140px;
  right: 120px;
  bottom: 50px;
  z-index: 4;
}

.b-poivre {
  width: 110px;
  height: 110px;
  right: 10px;
  bottom: 0px;
  z-index: 5;
}

.b-huile {
  width: 90px;
  height: 90px;
  right: 170px;
  top: 140px;
  z-index: 2;
}

.b-baies {
  width: 65px;
  height: 65px;
  right: 230px;
  bottom: 150px;
  z-index: 3;
}

.b-graines {
  width: 50px;
  height: 50px;
  right: 240px;
  bottom: 80px;
  z-index: 1;
}

/* --- ENCART À LA DEMANDE --- */
.custom-orders-text {
  padding-top: 10px;
}

/* Surtitre élégant en couleur or sombre (lisible sur fond clair) */
.custom-surtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9e8248;
  margin-bottom: 6px;
}

/* Titre principal */
.custom-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1613;
  margin: 0 0 12px 0;
  letter-spacing: 0.02em;
}

/* Description principale */
.custom-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4a423b;
  margin-bottom: 16px;
}

.custom-desc strong {
  color: #1a1613;
}

/* Accentuation éditoriale avec simple ligne dorée verticale */
.custom-highlight {
  padding-left: 16px;
  border-left: 2px solid #cbb072;
  margin-bottom: 22px;
}

.custom-highlight p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #585048;
  margin: 0;
}

/* Lien avec soulignement fin et flèche interactive */
.custom-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1613;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.custom-inline-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #cbb072;
  transition: background-color 0.3s ease;
}

.custom-inline-link svg {
  stroke: #9e8248;
  transition: transform 0.3s ease;
}

.custom-inline-link:hover svg {
  transform: translateX(5px);
}

.custom-inline-link:hover::after {
  background-color: #1a1613;
}

/* Adaptations sur mobile */
@media (max-width: 576px) {
  .custom-orders-card {
    padding: 22px;
  }
}

/* --- RESPONSIVITÉ --- */
@media (max-width: 992px) {
  .catalog-container {
    grid-template-columns: 1fr; /* Passe sur une seule colonne */
    gap: 60px;
  }

  .bubble-cluster {
    max-width: 400px; /* Limite la taille de l'amas sur tablette */
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 576px) {
  .catalog-main {
    grid-template-columns: 1fr; /* 1 produit par ligne sur mobile */
    gap: 50px;
  }
  
  .catalog-item {
    align-items: center; /* Centre le contenu sur mobile */
    text-align: center;
  }

  .bubble-cluster {
    height: 350px;
    transform: scale(0.85); /* Réduit un peu l'amas sur petit écran */
    transform-origin: center right;
  }
}

/* ================= Labotika ================= */

.labotika-section {
  background: var(--paper);
}

.labotika-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.labotika-visual {
  position: relative;
  min-height: 600px;
}

.labotika-photo {
  position: absolute;
  overflow: hidden;
}

.labotika-photo.main {
  inset: 0 9% 0 0;
}

.labotika-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.labotika-stamp {
  position: absolute;
  right: 0;
  bottom: 35px;
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: .9;
  text-align: center;
  transform: rotate(-8deg);
}

.labotika-stamp small {
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.labotika-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(65px, 8vw, 110px);
}

.labotika-copy > p:not(.lead) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.labotika-points {
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.labotika-points div {
  display: flex;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.labotika-points b {
  color: var(--gold);
  font-size: 9px;
}

/* ================= À SAVOIR ================= */

.asavoir-section {
  padding: 100px 0;
  background-color: #f7f5f0; /* Fond grège très doux et naturel */
  color: #1a1613;
}

.asavoir-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* --- GALERIE VISUELLE (GAUCHE & CENTRE) --- */
.asavoir-visuals {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.asavoir-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(203, 176, 114, 0.2);
}

.mosaic-frame {
  height: 480px;
}

.portrait-frame {
  height: 520px;
}

.asavoir-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.asavoir-img-frame:hover .asavoir-img {
  transform: scale(1.05);
}

/* --- COLONNE ÉDITORIALE (DROITE) --- */
.asavoir-surtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9e8248;
  margin-bottom: 6px;
}

.asavoir-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #1a1613;
  margin: 0 0 35px 0;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* Liste typographique sans fond de carte */
.asavoir-editorial-list {
  display: flex;
  flex-direction: column;
}

.asavoir-item {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(43, 37, 32, 0.12);
  transition: border-color 0.3s ease;
}

.asavoir-item:first-child {
  border-top: 1px solid rgba(43, 37, 32, 0.12);
}

.asavoir-item:hover {
  border-bottom-color: #cbb072;
}

/* Numérotation dorée */
.asavoir-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #cbb072;
  line-height: 1;
  padding-top: 4px;
}

/* Textes */
.asavoir-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1613;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.asavoir-item-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #585048;
  margin: 0;
}

/* RESPONSIVITÉ */
@media (max-width: 992px) {
  .asavoir-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .asavoir-visuals {
    grid-template-columns: 1fr;
  }

  .mosaic-frame, .portrait-frame {
    height: 320px;
  }

  .asavoir-item {
    gap: 14px;
  }
}

/* ================= SECTION ÉVÉNEMENTS & INNOVATION (DARK MODE PREMIUM) ================= */
/* =========================================================
   SECTION ÉVÉNEMENTS & INNOVATION (DESIGN LUXE & INNOVANT)
   ========================================================= */

.premium-events-section {
  background-color: #050505; /* Noir ultra-profond */
  color: #f0ebd8;
  padding: 120px 0;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif; /* Police moderne et tech */
}

/* --- PARTIE 1 : LA LISTE ÉDITORIALE INTERACTIVE --- */
.editorial-roster {
  display: flex;
  flex-direction: column;
  margin-bottom: 150px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roster-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.roster-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  width: 35%;
  transition: color 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

.roster-title span {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #666;
  text-transform: uppercase;
  margin-top: 5px;
  transition: color 0.4s ease;
}

/* L'IMAGE QUI S'OUVRE AU SURVOL (L'effet "Waouh") */
.roster-image-wrapper {
  width: 0; /* Cachée par défaut */
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0;
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); /* Courbe de vitesse luxueuse */
}

.roster-img {
  width: 280px; /* Largeur fixe de l'image à l'intérieur */
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  filter: grayscale(80%);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.roster-desc {
  width: 40%;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #888;
  margin: 0;
  transition: color 0.4s ease, transform 0.4s ease;
}

/* Animations au Hover */
.roster-row:hover {
  padding: 55px 0; /* La ligne respire */
}

.roster-row:hover .roster-title {
  color: #cbb072;
  transform: translateX(10px);
}

.roster-row:hover .roster-title span {
  color: #cbb072;
}

.roster-row:hover .roster-desc {
  color: #e5ded6;
  transform: translateX(-10px);
}

.roster-row:hover .roster-image-wrapper {
  width: 280px; /* L'image se déploie */
  margin: 0 30px;
  opacity: 1;
}

.roster-row:hover .roster-img {
  transform: scale(1); /* Effet de dézoom interne */
  filter: grayscale(0%);
}


/* --- PARTIE 2 : CINÉMATIQUE AVIRA --- */
.avira-cinematic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 60px 0;
}

/* Logo géant, très transparent, en rotation lente */
.avira-bg-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.avira-logo-float {
  width: 45vw;
  max-width: 600px;
  animation: spinSlow 40s linear infinite;
  filter: blur(2px);
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.avira-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* Typographie Massive avec Dégradé Métallique */
.avira-massive-text {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 0.9;
  background: linear-gradient(180deg, #ffffff 0%, #7a7a7a 50%, #2b2b2b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 20px 40px rgba(0,0,0,0.5);
  margin-bottom: 40px;
}

/* Contenu textuel centré et épuré */
.avira-manifesto {
  max-width: 600px;
  margin: 0 auto;
}

.avira-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-style: italic;
}

.avira-manifesto p {
  font-size: 1rem;
  line-height: 1.8;
  color: #a3a3a3;
  margin-bottom: 15px;
}

.highlight-gold {
  color: #cbb072;
  font-weight: 600;
}

.avira-footer-text {
  margin-top: 40px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #cbb072;
  border-radius: 50%;
  box-shadow: 0 0 10px #cbb072;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(203, 176, 114, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(203, 176, 114, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(203, 176, 114, 0); }
}

/* RESPONSIVITÉ */
@media (max-width: 992px) {
  .roster-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0;
  }
  
  .roster-title, .roster-desc {
    width: 100%;
  }
  
  .roster-desc {
    margin-top: 15px;
  }
  
  .roster-row:hover .roster-image-wrapper {
    width: 100%;
    margin: 20px 0;
  }
  
  .roster-img {
    width: 100%;
  }
}
/* ================= Vision ================= */

.vision-section {
  background: var(--green);
  color: var(--cream);
}

.vision-head {
  margin-bottom: 60px;
}

.vision-head h2 {
  font-size: clamp(52px, 7vw, 92px);
}

.vision-head h2 em { color: var(--gold-light); }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.vision-card {
  min-height: 280px;
  padding: 34px;
  border: 1px solid rgba(245,239,227,.16);
  background: rgba(245,239,227,.035);
  transition: transform .4s var(--ease), background .3s ease;
}

.vision-card:hover {
  transform: translateY(-6px);
  background: rgba(245,239,227,.07);
}

.vision-card.featured {
  background: var(--ink);
}

.vision-card h3 {
  max-width: 480px;
  margin: 70px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 35px;
  font-weight: 400;
}

.vision-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(245,239,227,.58);
  font-size: 12px;
  line-height: 1.85;
}

.image-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.image-card > div {
  position: absolute;
  inset: auto 0 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(17,9,4,.85));
}

.image-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

/* ================= Contact ================= */

.split-contact {
    display: flex;
    flex-wrap: wrap; /* Permet de passer en colonne sur mobile */
    min-height: 100vh;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-left, .contact-right {
    flex: 1 1 50%; /* Chaque moitié prend 50% de la largeur */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 8%;
}

/* --- MOITIÉ GAUCHE (SOMBRE) --- */
.contact-left {
    background: url('../images/texture-sombre.jpg') center/cover, #2a2a2a;
    background-blend-mode: overlay; /* Mélange la texture avec la couleur sombre */
    color: #e5ded6;
}

.product-showcase {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    perspective: 1000px; /* Profondeur 3D */
}

.floating-product {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.8));
    animation: levitation 6s ease-in-out infinite;
}

@keyframes levitation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); } /* Le coffret monte légèrement */
}

.contact-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b3b3b3;
    margin-bottom: 20px;
    text-align: justify;
}

/* --- MOITIÉ DROITE (CLAIR) --- */
.contact-right {
    background-color: #eaddd0; /* Beige luxueux tiré de la maquette */
    color: #1a1a1a;
    align-items: center;
    text-align: center;
}

.contact-heading {
    margin-bottom: 40px;
}

.massive-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem); /* Taille dynamique */
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
}

.gold-separator {
    width: 100%;
    height: 2px;
    background-color: #cbb072;
    margin: 20px 0;
}

.elegant-subtitle {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: #333;
    text-transform: uppercase;
}

/* --- ICÔNES D'ACTION --- */
.contact-actions {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid #cbb072;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.action-item:hover .icon-circle {
    background-color: #cbb072;
    color: #fff;
    transform: translateY(-5px);
}

.action-item:hover .contact-icon {
    filter: brightness(0) invert(1);
}

.icon-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

/* --- QR CODE ET RÉSEAUX --- */
.qr-wrapper {
    background: #fff;
    padding: 10px;
    border: 1px solid rgba(203, 176, 114, 0.4);
    margin-bottom: 30px;
}

.qr-image {
    width: 140px;
    height: 140px;
    display: block;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.social-link:hover {
    background-color: #1a1a1a;
    color: #eaddd0;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1);
}

/* --- DÉTAILS TEXTUELS --- */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-email {
    font-weight: 700;
    color: #cbb072;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.detail-phone {
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.2rem;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
    .contact-left, .contact-right {
        flex: 1 1 100%;
        padding: 60px 5%;
    }
}
/* ================= Footer ================= */

.site-footer {
  padding: 55px 0 30px;
  background: var(--ink);
  color: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: end;
}

.footer-inner img {
  width: 160px;
  margin-bottom: 13px;
  background: transparent;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-inner p {
  margin: 0;
  color: rgba(245,239,227,.42);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(245,239,227,.6);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.footer-copy {
  color: rgba(245,239,227,.32);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ================= Modal ================= */

.product-modal {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,9,4,.75);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(950px, 100%);
  max-height: min(700px, 90dvh);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
  transform: translateY(25px) scale(.97);
  transition: transform .5s var(--ease);
}

.product-modal.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(28,15,6,.15);
  background: rgba(245,239,227,.9);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.modal-image {
  min-height: 500px;
  background: var(--sand);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 60px);
  overflow: auto;
}

.modal-content h2 {
  margin: 13px 0 20px;
  font-size: clamp(35px, 4vw, 55px);
}

.modal-badge {
  align-self: flex-start;
  padding: 7px 9px;
  background: var(--gold);
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.modal-description {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.modal-description b { color: var(--ink); }

/* ================= Reveal ================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease),
    filter .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

/* ================= Responsive ================= */

@media (max-width: 1000px) {
  .univers-layout {
    grid-template-columns: 1fr 1.4fr;
  }

  .univers-copy { grid-row: auto; }
  .univers-image { grid-row: span 2; }

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-image { grid-row: span 2; }

  .editorial-copy {
    grid-column: 1;
    padding-left: 0;
  }

  .products-heading,
  .services-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-intro { grid-column: span 2; }

  .contact-qr { align-items: flex-start; text-align: left; }

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

  .footer-copy { grid-column: span 2; }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 30px, 600px);
  }

  .section {
    padding: 75px 0;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 67px;
  }

  .header-logo { width: 145px; }
  .header-spacer { min-width: 50px; }

  .hero-bottom-banner {
      padding: 12px 16px;
    }
    .hero-bottom-banner p {
      font-size: 0.75rem;
      line-height: 1.4;
    }
    .hero-frame {
      inset: 83px 12px 20px;
    }

  .hero-side-note { display: none; }

  .hero h1 {
    font-size: clamp(45px, 15vw, 75px);
  }

  .hero-description { font-size: 12px; }

  .section-heading { margin-bottom: 50px; }

  .univers-layout,
  .editorial-grid,
  .value-grid,
  .services-grid,
  .labotika-layout,
  .international-grid,
  .vision-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .univers-copy {
    grid-template-columns: 24px 1fr;
  }

  .univers-image {
    grid-row: auto;
    min-height: 380px;
  }

  .univers-card {
    min-height: 190px;
  }

  .editorial-image {
    grid-row: auto;
    height: 430px;
  }

  .editorial-copy {
    grid-column: auto;
  }

  .value-grid { margin-top: 55px; }

  .value-card { min-height: 220px; }

  .service-item { min-height: 220px; }

  .service-image-strip {
    grid-template-columns: 1fr;
  }

  .service-image-strip img { min-height: 270px; }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(5n + 1),
  .product-card:nth-child(5n + 2),
  .product-card:nth-child(5n + 3),
  .product-card:nth-child(5n + 4),
  .product-card:nth-child(5n + 5) {
    grid-column: auto;
  }

  .product-card-image { height: 280px; }

  .labotika-visual { min-height: 470px; }

  .international-image {
    grid-row: auto;
    min-height: 420px;
  }

  .contact-intro { grid-column: auto; }

  .contact-qr {
    align-items: flex-start;
  }

  .contact-socials {
    flex-wrap: wrap;
  }

  .contact-socials > span {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-copy {
    grid-column: auto;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .modal-dialog {
    grid-template-columns: 1fr;
    max-height: 92dvh;
  }

  .modal-image {
    min-height: 260px;
    height: 38dvh;
    max-height: 360px;
  }

  .modal-content {
    max-height: 52dvh;
  }
}

@media (max-width: 480px) {
  .side-menu {
    width: 100%;
    padding: 25px 20px 20px;
  }

  .side-menu-head h2 { font-size: 38px; }

  .side-nav a { font-size: 18px; }

  .hero-kicker { letter-spacing: .25em; }

  .hero h1 { font-size: 49px; }

  .hero-rule { margin-top: 23px; }

  .service-grid { grid-template-columns: 1fr; }

  .labotika-stamp {
    width: 115px;
    height: 115px;
    font-size: 17px;
  }

  .contact-details {
    padding-top: 0;
  }

  .qr-frame img {
    width: 125px;
    height: 125px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
