/* =================================================================
   CAMARGUE COQUILLAGES — Design System "Bleu Méditerranée & Sable"
   ================================================================= */

:root {
  /* Mediterranean sea */
  --deep:    #0e3a59;
  --deep-2:  #17496b;
  --deep-3:  #082b42;
  /* Nacre & sand */
  --shell:   #f7f1e6;
  --shell-2: #efe3cd;
  --shell-3: #e6d8bd;
  /* Camargue accent — flamingo / sun-on-salt */
  --coral:   #c96a4c;
  --coral-lt:#dd8a6d;
  --coral-dk:#a6543b;
  /* Ink & pearl */
  --ink:     #192b3a;
  --ink-2:   #475862;
  --pearl:   #e9dec8;
  --pearl-2: #a6b6c3;
  --brass:   #b88f4e;

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-2: cubic-bezier(.65, 0, .35, 1);

  --r-sm: 10px;
  --r:    20px;
  --r-lg: 36px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--shell);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--coral); color: var(--shell); }

/* =================================================================
   OVERLAYS — grain, progress, cursor
   ================================================================= */
.grain {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress {
  position: fixed; top: 0; left: 0; z-index: 9100;
  height: 3px; width: 0%;
  background: var(--coral);
}

.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9500;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor {
  width: 38px; height: 38px;
  border: 1.5px solid #fff;
  margin: -19px 0 0 -19px;
  transition: width .3s var(--ease), height .3s var(--ease),
              margin .3s var(--ease), background .3s var(--ease);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  margin: -3px 0 0 -3px;
}
.cursor.is-active {
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  background: #fff;
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* =================================================================
   PRELOADER
   ================================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9800;
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease) .2s;
}
.preloader.done { transform: translateY(-101%); }
.preloader-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; color: var(--shell);
}
.preloader-mark {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 400;
  color: var(--coral-lt);
  opacity: 0; transform: scale(.7);
  animation: preMark .7s var(--ease) forwards;
}
.preloader-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  letter-spacing: .04em; margin-top: 10px;
  opacity: 0; animation: preFade .6s var(--ease) .25s forwards;
}
.preloader-line {
  width: 0; height: 1px; margin: 18px 0;
  background: rgba(233,222,200,.5);
  animation: preLine .7s var(--ease) .5s forwards;
}
.preloader-sub {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--pearl-2);
  opacity: 0; animation: preFade .6s var(--ease) .7s forwards;
}
@keyframes preMark { to { opacity: 1; transform: scale(1); } }
@keyframes preFade { to { opacity: 1; } }
@keyframes preLine { to { width: 150px; } }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .04em;
  padding: 17px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--coral); color: var(--shell); }
.btn-primary:hover { background: var(--coral-dk); }

.btn-dark { background: var(--deep); color: var(--shell); }
.btn-dark:hover { background: var(--deep-3); }

.btn-line {
  background: transparent; color: var(--shell);
  border-color: rgba(247,241,230,.4);
}
.btn-line:hover { border-color: var(--shell); background: rgba(247,241,230,.08); }

.btn-lg { padding: 21px 38px; font-size: .88rem; }

/* =================================================================
   SHARED — eyebrow, headings, container
   ================================================================= */
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

.section { padding: 130px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral-dk);
}
.eyebrow--light { color: var(--coral-lt); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(201,106,76,.18);
}

.head { max-width: 760px; margin-bottom: 70px; }
.head-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -.015em;
  margin-top: 22px;
}
.head-title em { font-style: italic; color: var(--coral); }

/* split-text words */
.word { display: inline-block; }
.word-in {
  display: inline-block;
  opacity: 0;
  transform: translateY(.42em);
  transition: opacity .7s var(--ease), transform .85s var(--ease);
}
.is-in .word-in { opacity: 1; transform: none; }

/* generic reveal */
.js [data-reveal] { opacity: 0; transform: translateY(34px); }
.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal-delay="1"].is-in { transition-delay: .1s; }
[data-reveal-delay="2"].is-in { transition-delay: .18s; }
[data-reveal-delay="3"].is-in { transition-delay: .28s; }

/* image clip reveal */
.reveal-img { overflow: hidden; }
.reveal-img img {
  transform: scale(1.5);
  transition: transform 1.5s var(--ease);
}
.js .reveal-img { clip-path: inset(0 0 100% 0); }
.js .reveal-img.is-in {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 1.3s var(--ease);
}
.reveal-img.is-in img { transform: scale(1); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: padding .4s var(--ease), background .4s var(--ease),
              box-shadow .4s var(--ease);
}
.nav::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 160px;
  background: linear-gradient(180deg,
    rgba(8,43,66,.78) 0%,
    rgba(8,43,66,.45) 42%,
    rgba(8,43,66,0) 100%);
  pointer-events: none;
  z-index: -1;
  transition: opacity .45s var(--ease);
}
.nav.scrolled::before { opacity: 0; }
.nav.scrolled {
  padding: 14px 48px;
  background: rgba(14,58,89,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(8,43,66,.3);
}

.nav-logo { display: flex; align-items: center; gap: 13px; }
.nav-mark {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(247,241,230,.35);
  color: var(--shell);
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.nav-mark svg { width: 24px; height: 24px; }
.nav-logo:hover .nav-mark { transform: rotate(-12deg); border-color: var(--coral-lt); }
.nav-logo-txt { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.06rem; font-weight: 500;
  color: var(--shell);
}
.nav-logo-sub {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--coral-lt); margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li > a:not(.nav-cta) {
  display: block; padding: 10px 16px;
  font-size: .82rem; font-weight: 500;
  color: rgba(247,241,230,.82);
  border-radius: 100px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-links > li > a:not(.nav-cta):hover {
  color: var(--shell); background: rgba(247,241,230,.1);
}
.nav-cta {
  display: inline-flex; align-items: center;
  margin-left: 12px; padding: 11px 24px;
  background: var(--coral); color: var(--shell);
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  border-radius: 100px;
  transition: background .35s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--coral-dk); }

.burger {
  display: none; flex-direction: column; gap: 6px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(247,241,230,.1); border: none;
  border-radius: 50%; cursor: pointer;
}
.burger span {
  display: block; width: 18px; height: 1.6px;
  background: var(--shell); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.nav-open .burger span:nth-child(1) { transform: translateY(3.8px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 46px;
  overflow: hidden;
  background: var(--deep-3);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img,
.hero-media video {
  width: 100%; height: 116%;
  object-fit: cover; object-position: center 55%;
  will-change: transform;
  background: var(--deep);
}
.hero-media .hero-video {
  display: block;
  pointer-events: none;
}
/* Masque le bouton play natif iOS Safari quand l'autoplay est bloqué (Low Power Mode) */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,43,66,.78) 0%, rgba(8,43,66,.42) 30%, rgba(8,43,66,.55) 60%, rgba(8,43,66,.94) 100%),
    linear-gradient(100deg, rgba(14,58,89,.88) 0%, rgba(14,58,89,.32) 55%, rgba(14,58,89,.12) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; width: 100%;
  margin: 0 auto;
}
/* Sceau aligné avec l'eyebrow (en haut à droite du bloc de contenu) */
.hero-seal {
  position: absolute;
  top: 0; right: 0;
  width: 152px; height: 152px;
  z-index: 3;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--pearl);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 11vw, 9.5rem);
  font-weight: 300; line-height: .96;
  letter-spacing: -.03em;
  color: var(--shell);
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--coral-lt); }

.hero-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 56px; flex-wrap: wrap;
  margin-top: 38px;
}
.hero-text {
  max-width: 440px;
  font-size: 1.04rem; line-height: 1.7;
  color: rgba(247,241,230,.86);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-foot {
  position: relative; z-index: 2;
  max-width: 1240px; width: 100%; margin: 48px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(247,241,230,.16);
}
.hero-since {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(247,241,230,.55);
}
.hero-scroll {
  display: flex; align-items: center; gap: 14px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(247,241,230,.7);
}
.hero-scroll-track {
  width: 46px; height: 1.5px;
  background: rgba(247,241,230,.25);
  position: relative; overflow: hidden;
}
.hero-scroll-thumb {
  position: absolute; inset: 0; width: 40%;
  background: var(--coral-lt);
  animation: scrollSlide 2.4s var(--ease-2) infinite;
}
@keyframes scrollSlide {
  0% { transform: translateX(-110%); }
  60%,100% { transform: translateX(260%); }
}

/* hero seal — voir aussi positionnement dans .hero-content ci-dessus */
.seal-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: spin 26s linear infinite;
}
.seal-ring text {
  font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 2.2px;
  fill: var(--shell);
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }
.seal-core {
  position: absolute; inset: 27px;
  border-radius: 50%; overflow: hidden;
  background: var(--shell);
  box-shadow: 0 8px 30px rgba(8,43,66,.4);
}
.seal-core img { width: 100%; height: 100%; object-fit: cover; }

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee {
  background: var(--deep);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(247,241,230,.08);
  border-bottom: 1px solid rgba(247,241,230,.08);
}
.marquee-track {
  display: flex; align-items: center; gap: 44px;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.7rem; font-style: italic; font-weight: 400;
  color: var(--pearl); white-space: nowrap;
}
.marquee-track .m-sep {
  font-family: var(--font-sans); font-style: normal;
  font-size: .8rem; color: var(--coral-lt);
}
.marquee-track .m-gold { color: var(--coral-lt); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =================================================================
   MANIFESTE
   ================================================================= */
.manifeste { padding: 140px 0 130px; }
.manifeste-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  font-weight: 300; line-height: 1.16;
  letter-spacing: -.018em;
  max-width: 1000px;
  margin-top: 36px;
}
.manifeste-title em { font-style: italic; color: var(--coral); }
.manifeste-foot {
  display: flex; gap: 60px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 38px;
  border-top: 1px solid var(--shell-3);
}
.manifeste-foot p {
  max-width: 520px;
  font-size: 1.02rem; color: var(--ink-2);
}
.signature { display: flex; flex-direction: column; gap: 3px; }
.sign-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-style: italic; color: var(--ink);
}
.sign-role {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral-dk);
}

/* =================================================================
   STATS
   ================================================================= */
.stats { padding: 0 0 130px; }
.stats-panel {
  background: var(--deep);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative; overflow: hidden;
}
.stats-panel::before {
  content: ''; position: absolute;
  top: -60%; right: -10%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,106,76,.22), transparent 70%);
}
.stat {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding-left: 26px;
}
.stat::before {
  content: ''; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 2px; background: rgba(221,138,109,.45);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  font-weight: 400; line-height: 1;
  color: var(--coral-lt);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: .82rem; line-height: 1.45;
  color: var(--pearl-2);
}

/* =================================================================
   PRODUITS
   ================================================================= */
.feature {
  display: grid; grid-template-columns: 1.05fr 1fr;
  background: var(--shell);
  border: 1px solid var(--shell-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 30px;
}
.feature-media { position: relative; min-height: 540px; }
.feature-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.feature-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--shell); color: var(--deep);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 100px;
}
.feature-body { padding: 60px 56px; align-self: center; }
.feature-kicker {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral-dk);
}
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -.02em;
  margin: 16px 0 18px;
}
.feature-desc { color: var(--ink-2); font-size: 1rem; }
.feature-specs {
  margin: 28px 0 32px;
  border-top: 1px solid var(--shell-3);
}
.feature-specs li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--shell-3);
}
.spec-k {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral-dk);
}
.spec-v { font-size: .92rem; font-weight: 500; color: var(--ink); text-align: right; }

.prod-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.prod-photo-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--coral); color: var(--shell);
  font-size: .64rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.prod-photo { position: relative; }
.prod-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.prod-card:hover { transform: translateY(-7px); }

.prod-card--solid {
  background: var(--deep);
  color: var(--shell);
  padding: 48px 44px;
  display: flex; flex-direction: column;
}
.prod-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(221,138,109,.4);
  color: var(--coral-lt);
  margin-bottom: 26px;
}
.prod-icon svg { width: 32px; height: 32px; }
.prod-title {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 400; letter-spacing: -.01em;
}
.prod-card--solid .prod-desc { color: var(--pearl-2); }
.prod-desc { font-size: .95rem; margin: 12px 0 20px; }
.prod-list { margin-bottom: 26px; }
.prod-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: .9rem; font-weight: 500;
  border-bottom: 1px solid rgba(247,241,230,.12);
}
.prod-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 8px; height: 8px; margin-top: -4px;
  border-radius: 50%;
  background: var(--coral);
}
.prod-list--cols {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}
.prod-card--photo .prod-list li {
  border-bottom-color: var(--shell-3);
}
.prod-link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: auto;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--coral-lt);
  transition: gap .3s var(--ease);
}
.prod-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.prod-link:hover svg { transform: translateX(4px); }

.prod-card--photo {
  background: var(--shell);
  border: 1px solid var(--shell-3);
  display: grid; grid-template-columns: 1fr 1.05fr;
}
.prod-photo { position: relative; min-height: 380px; }
.prod-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.prod-photo-body {
  padding: 44px 42px;
  display: flex; flex-direction: column;
}
.prod-card--photo .prod-link { color: var(--coral-dk); }

/* =================================================================
   LA PERLE
   ================================================================= */
.perle {
  background: var(--deep);
  color: var(--shell);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 130px 0;
}
.perle-wrap {
  max-width: 1240px; margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 76px; align-items: center;
}
.perle-visual {
  position: relative;
  border-radius: var(--r);
  aspect-ratio: 4 / 5;
}
.perle-visual img { width: 100%; height: 100%; object-fit: cover; }
.perle-stamp {
  position: absolute; bottom: 22px; left: 22px;
  display: flex; flex-direction: column;
  background: var(--coral);
  color: var(--shell);
  padding: 16px 22px;
  border-radius: var(--r-sm);
}
.perle-stamp span:first-child {
  font-family: var(--font-display);
  font-size: 1.4rem; font-style: italic;
}
.perle-stamp-sub {
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  opacity: .85;
}
.perle-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -.02em;
  margin: 24px 0 22px;
}
.perle-title em { font-style: italic; color: var(--coral-lt); }
.perle-text {
  font-size: 1.02rem; color: var(--pearl);
  max-width: 560px;
}
.perle-text strong { color: var(--shell); font-weight: 600; }

.pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 38px 0 38px;
}
.pillar {
  position: relative;
  padding: 24px 22px;
  background: rgba(247,241,230,.05);
  border: 1px solid rgba(247,241,230,.1);
  border-radius: var(--r-sm);
  transition: background .4s var(--ease), border-color .4s var(--ease),
              transform .4s var(--ease);
}
.pillar:hover {
  background: rgba(247,241,230,.09);
  border-color: rgba(221,138,109,.4);
  transform: translateY(-4px);
}
.pillar-no {
  position: absolute; top: 16px; right: 18px;
  font-family: var(--font-display);
  font-size: .85rem; font-style: italic;
  color: var(--coral-lt); opacity: .7;
}
.pillar-ic { width: 32px; height: 32px; color: var(--coral-lt); }
.pillar-label {
  display: block; margin-top: 16px;
  font-size: .96rem; font-weight: 600;
  color: var(--shell);
}

/* =================================================================
   TERROIR
   ================================================================= */
.terroir {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 120px 48px;
  overflow: hidden;
}
.terroir-media { position: absolute; inset: 0; z-index: 0; }
.terroir-media img {
  width: 100%; height: 118%;
  object-fit: cover; object-position: center 40%;
  will-change: transform;
}
.terroir-veil {
  position: absolute; inset: 0;
  background: linear-gradient(95deg,
    rgba(8,43,66,.93) 0%, rgba(8,43,66,.7) 45%, rgba(8,43,66,.2) 100%);
}
.terroir-content {
  position: relative; z-index: 2;
  max-width: 640px;
  color: var(--shell);
}
.terroir-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -.02em;
  margin: 22px 0 24px;
}
.terroir-title em { font-style: italic; color: var(--coral-lt); }
.terroir-text {
  font-size: 1.04rem; line-height: 1.75;
  color: rgba(247,241,230,.86);
}
.terroir-quote {
  position: relative;
  margin-top: 36px; padding: 28px 0 4px 34px;
  border-left: 2px solid var(--coral);
  font-family: var(--font-display);
  font-size: 1.4rem; font-style: italic; font-weight: 300;
  line-height: 1.45;
  color: var(--shell);
}
.quote-mark {
  position: absolute; top: -6px; left: 24px;
  font-family: var(--font-display);
  font-size: 4rem; color: var(--coral);
  opacity: .5;
}
.terroir-quote cite {
  display: block; margin-top: 16px;
  font-family: var(--font-sans);
  font-size: .76rem; font-style: normal;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral-lt);
}

/* =================================================================
   HISTOIRE
   ================================================================= */
.histoire { background: var(--shell-2); }
.histoire-grid {
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: 64px; align-items: start;
}
.histoire-photo {
  position: sticky; top: 110px;
  border-radius: var(--r);
  aspect-ratio: 4 / 5;
}
.histoire-photo img { width: 100%; height: 100%; object-fit: cover; }
.histoire-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 38px 22px 18px;
  background: linear-gradient(transparent, rgba(8,43,66,.92));
  font-size: .76rem; font-style: italic;
  color: var(--pearl);
}

.timeline { position: relative; padding-left: 38px; }
.timeline-rail {
  position: absolute; left: 4px; top: 12px; bottom: 12px;
  width: 2px; background: var(--shell-3);
}
.timeline-fill {
  position: absolute; inset: 0 0 auto 0;
  height: 0%;
  background: var(--coral);
}
.tl-item {
  position: relative;
  padding-bottom: 40px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute;
  left: -38px; top: 7px;
  width: 12px; height: 12px;
  margin-left: -1px;
  border-radius: 50%;
  background: var(--shell-2);
  border: 2px solid var(--coral-dk);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.tl-item.is-in::before { background: var(--coral); transform: scale(1.15); }
.tl-item--gold::before { border-color: var(--brass); }
.tl-year {
  font-family: var(--font-display);
  font-size: 1.05rem; font-style: italic;
  color: var(--coral-dk);
}
.tl-card {
  margin-top: 8px;
  background: var(--shell);
  border: 1px solid var(--shell-3);
  border-radius: var(--r);
  padding: 26px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tl-card:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(25,43,58,.1);
}
.tl-card--withimg { overflow: hidden; }
.tl-card-img {
  position: relative;
  margin: -2px -30px 18px;
  height: 180px;
  overflow: hidden;
}
.tl-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  transition: transform .8s var(--ease);
}
.tl-card--withimg:hover .tl-card-img img { transform: scale(1.04); }
.tl-card-img-cap {
  position: absolute; bottom: 12px; left: 14px;
  background: var(--coral); color: var(--shell);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
}
.tl-item--gold .tl-card {
  background: var(--deep);
  border-color: var(--deep);
}
.tl-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 500; letter-spacing: -.01em;
  margin-bottom: 7px;
}
.tl-card p { font-size: .92rem; color: var(--ink-2); }
.tl-item--gold .tl-card h4 { color: var(--shell); }
.tl-item--gold .tl-card p { color: var(--pearl-2); }

/* =================================================================
   INSTAGRAM
   ================================================================= */
.insta { padding: 124px 0; background: var(--deep); }
.insta .head-title { color: var(--shell); }
.insta .head-title em { color: var(--coral-lt); }
.insta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insta-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--r);
  overflow: hidden;
}
.insta-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.insta-tile:hover img { transform: scale(1.07); }
.insta-ov {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(8,43,66,0);
  color: var(--shell);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  opacity: 0;
  transition: opacity .4s var(--ease), background .4s var(--ease);
}
.insta-tile:hover .insta-ov { opacity: 1; background: rgba(8,43,66,.52); }
.insta-ov svg { width: 34px; height: 34px; }
.insta-cta { margin-top: 42px; display: flex; justify-content: center; }

/* =================================================================
   DISTINCTIONS
   ================================================================= */
.distinctions {
  background: var(--shell);
  padding: 170px 0 150px;
}
.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.dist-main {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: auto 1fr;
  gap: 48px; align-items: center;
  background: var(--deep);
  border-radius: var(--r-lg);
  padding: 54px 56px;
}
.dist-seal {
  width: 168px; height: 168px;
  border-radius: 50%; overflow: hidden;
  background: var(--shell);
  flex-shrink: 0;
  box-shadow: 0 14px 44px rgba(8,43,66,.4);
}
.dist-seal img { width: 100%; height: 100%; object-fit: cover; }
.dist-src {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral-lt);
}
.dist-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic; font-weight: 300;
  line-height: 1.35;
  color: var(--shell);
  margin: 14px 0 16px;
}
.dist-note { font-size: .92rem; color: var(--pearl-2); max-width: 560px; }

.dist-card {
  background: var(--shell);
  border: 1px solid var(--shell-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.dist-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(25,43,58,.12);
}
.dist-badge-img {
  flex-shrink: 0;
  height: 268px;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  background: var(--shell-2);
}
.dist-badge-img img { width: 172px; max-height: 100%; object-fit: contain; }
.dist-press-img { flex-shrink: 0; height: 268px; }
.dist-press-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.dist-card-body {
  flex: 1;
  padding: 32px 36px 34px;
}
.dist-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500; letter-spacing: -.01em;
  margin: 10px 0 8px;
}
.dist-card-body p { font-size: .92rem; color: var(--ink-2); }

/* =================================================================
   TÊTES D'AFFICHES (clients prestigieux)
   ================================================================= */
.headliners {
  padding: 130px 0 110px;
  background: var(--shell);
}
.headliners .head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.head-intro {
  max-width: 580px; margin: 24px auto 0;
  font-size: 1rem; color: var(--ink-2);
}
.hl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.hl-card {
  position: relative;
  background: var(--shell-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 168px 1fr;
  text-decoration: none;
  color: inherit;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid var(--shell-3);
}
.hl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(8,43,66,.16);
}
.hl-img {
  background: var(--deep-3);
  overflow: hidden;
}
.hl-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.hl-card:hover .hl-img img { transform: scale(1.06); }
.hl-body {
  padding: 26px 28px 28px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.hl-tag {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral-dk);
  margin-bottom: 6px;
}
.hl-name {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--ink);
}
.hl-sub {
  font-size: .9rem;
  color: var(--ink-2);
  margin-top: 4px;
  line-height: 1.4;
}
.hl-link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .03em;
  color: var(--coral);
  transition: color .3s var(--ease);
}
.hl-pf {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center; justify-content: center;
}
.hl-card--youtube .hl-pf { color: #FF0000; }
.hl-card--facebook .hl-pf { color: #1877F2; }
.hl-card--instagram .hl-pf { color: #E1306C; }
.hl-card--web .hl-pf { color: var(--deep); }
.hl-pf svg { width: 100%; height: 100%; }
.hl-arrow {
  width: 14px; height: 14px;
  margin-left: 2px;
  transition: transform .3s var(--ease);
}
.hl-card:hover .hl-arrow { transform: translate(3px,-3px); }
.hl-card:hover .hl-link { color: var(--coral-dk); }

@media (max-width: 860px) {
  .headliners { padding: 84px 0 74px; }
  .hl-grid { grid-template-columns: 1fr; max-width: 440px; }
  .hl-card { grid-template-columns: 130px 1fr; }
  .hl-body { padding: 22px 22px 24px; }
  .hl-name { font-size: 1.35rem; }
}
@media (max-width: 460px) {
  .hl-card { grid-template-columns: 1fr; }
  .hl-img { aspect-ratio: 16 / 10; }
}

/* =================================================================
   VIDÉOS (carousel horizontal style Instagram)
   ================================================================= */
.vids {
  padding: 130px 0 110px;
  background: var(--shell-2);
  overflow: hidden;
}
.vids-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.vids-head .head-title em { font-style: italic; color: var(--coral); }

.vids-carousel {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
.vids-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 48px;
  padding: 8px 48px 24px;
  margin: 0 -48px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.vids-grid::-webkit-scrollbar { display: none; }

.vids-card {
  flex: 0 0 calc((100% - 48px - 96px) / 3);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--deep-3);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(8,43,66,.12);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.vids-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(8,43,66,.22);
}
.vids-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.vids-card:hover img { transform: scale(1.05); }
.vids-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,43,66,0) 50%, rgba(8,43,66,.55) 100%);
  transition: background .35s var(--ease);
}
.vids-card:hover .vids-veil {
  background: linear-gradient(180deg, rgba(8,43,66,.05) 40%, rgba(8,43,66,.65) 100%);
}
.vids-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.vids-btn::before {
  content: '';
  position: absolute;
  width: 62px; height: 62px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(201,106,76,.42);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.vids-card:hover .vids-btn::before {
  transform: scale(1.12);
  background: var(--coral-lt);
}
.vids-btn svg {
  width: 24px; height: 24px;
  margin-left: 3px;
  color: var(--shell);
  position: relative;
  z-index: 1;
}
.vids-card-title {
  position: absolute; bottom: 14px; left: 16px; right: 16px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500;
  color: var(--shell);
  line-height: 1.25;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(8,43,66,.7);
}

/* Flèches de navigation */
.vids-nav {
  position: absolute; top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--shell);
  border: 1px solid var(--shell-3);
  border-radius: 50%;
  color: var(--deep);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(8,43,66,.18);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), opacity .25s;
}
.vids-nav:hover { background: var(--coral); color: var(--shell); border-color: var(--coral); }
.vids-nav:disabled { opacity: 0; pointer-events: none; }
.vids-nav svg { width: 22px; height: 22px; }
.vids-nav--prev { left: 8px; }
.vids-nav--next { right: 8px; }

@media (max-width: 1080px) {
  .vids-card { flex-basis: calc((100% - 48px - 56px) / 2); }
  .vids-grid { scroll-padding-left: 28px; padding: 8px 28px 24px; margin: 0 -28px; gap: 18px; }
  .vids-nav { width: 44px; height: 44px; }
  .vids-nav--prev { left: -4px; }
  .vids-nav--next { right: -4px; }
}
@media (max-width: 720px) {
  .vids { padding: 84px 0 74px; }
  .vids-card { flex-basis: 84%; }
  .vids-grid { scroll-padding-left: 24px; padding: 8px 24px 24px; margin: 0 -24px; gap: 16px; }
  .vids-btn::before { width: 56px; height: 56px; }
  .vids-btn svg { width: 22px; height: 22px; }
  /* sur mobile : on cache les flèches, le swipe touch suffit */
  .vids-nav { display: none; }
}

/* =================================================================
   REPORTAGE (YouTube embed)
   ================================================================= */
.reportage {
  padding: 130px 0 110px;
  background: var(--shell-2);
}
.reportage-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.reportage-head .head-title { margin-top: 22px; }
.reportage-head .head-title em { font-style: italic; color: var(--coral); }
.reportage-intro {
  max-width: 600px;
  margin: 24px auto 0;
  font-size: 1rem;
  color: var(--ink-2);
}
.reportage-frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(8,43,66,.22);
}
.reportage-play {
  position: relative;
  display: block;
  width: 100%; height: 100%;
  padding: 0; margin: 0;
  border: none; background: var(--deep-3);
  cursor: pointer;
}
.reportage-play img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease), opacity .3s;
}
.reportage-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,43,66,.05) 0%, rgba(8,43,66,.5) 100%);
  transition: background .35s var(--ease);
}
.reportage-play:hover img { transform: scale(1.04); }
.reportage-play:hover .reportage-veil {
  background: linear-gradient(180deg, rgba(8,43,66,.1) 0%, rgba(8,43,66,.55) 100%);
}
.reportage-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.reportage-btn::before {
  content: '';
  position: absolute;
  width: 96px; height: 96px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(201,106,76,.45);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.reportage-play:hover .reportage-btn::before {
  transform: scale(1.1);
  background: var(--coral-lt);
}
.reportage-btn svg {
  width: 36px; height: 36px;
  margin-left: 5px;
  color: var(--shell);
  position: relative;
  z-index: 1;
}
.reportage-frame iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}

@media (max-width: 860px) {
  .reportage { padding: 84px 0 70px; }
  .reportage-head { margin-bottom: 40px; }
  .reportage-btn::before { width: 70px; height: 70px; }
  .reportage-btn svg { width: 28px; height: 28px; }
}

/* =================================================================
   CTA
   ================================================================= */
.cta {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 150px 48px;
  overflow: hidden;
}
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
}
.cta-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,43,66,.9) 0%, rgba(14,58,89,.8) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 720px;
  display: flex; flex-direction: column; align-items: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--shell);
  margin: 22px 0 22px;
}
.cta-title em { font-style: italic; color: var(--coral-lt); }
.cta-text {
  font-size: 1.05rem;
  color: rgba(247,241,230,.82);
  max-width: 540px;
  margin-bottom: 38px;
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--deep-3); color: var(--shell); }
.footer-top {
  max-width: 1240px; margin: 0 auto;
  padding: 84px 48px 60px;
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 56px;
}
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 400;
}
.footer-sub {
  display: block; margin: 4px 0 20px;
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--coral-lt);
}
.footer-brand p { font-size: .9rem; color: var(--pearl-2); line-height: 1.8; }
.footer-h {
  display: block; margin-bottom: 22px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(247,241,230,.45);
}
.footer-nav { display: flex; flex-direction: column; gap: 13px; }
.footer-nav a {
  font-size: .92rem; color: var(--pearl-2);
  width: max-content;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.footer-nav a:hover { color: var(--shell); transform: translateX(5px); }
.footer-order { display: flex; flex-direction: column; }
.footer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  width: max-content;
  background: var(--coral); color: var(--shell);
  font-size: .82rem; font-weight: 600;
  padding: 14px 24px; border-radius: 100px;
  margin-bottom: 20px;
  transition: background .35s var(--ease), transform .25s var(--ease);
}
.footer-cta svg { width: 15px; height: 15px; }
.footer-cta:hover { background: var(--coral-dk); }
.footer-order p { font-size: .86rem; color: var(--pearl-2); line-height: 1.7; }
.footer-web {
  margin-top: 16px;
  font-size: .86rem; color: var(--coral-lt);
  border-bottom: 1px solid rgba(221,138,109,.35);
  width: max-content; padding-bottom: 2px;
}
.footer-web:hover { color: var(--shell); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 24px 48px;
  border-top: 1px solid rgba(247,241,230,.1);
  display: flex; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
  font-size: .74rem; color: rgba(247,241,230,.4);
}
.footer-credit {
  max-width: 1240px; margin: 0 auto;
  padding: 14px 48px 22px;
  text-align: center;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(247,241,230,.32);
}
.footer-credit a {
  color: rgba(247,241,230,.55);
  border-bottom: 1px solid rgba(247,241,230,.25);
  padding-bottom: 1px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.footer-credit a:hover { color: var(--coral-lt); border-color: var(--coral-lt); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1080px) {
  .feature { grid-template-columns: 1fr; }
  .feature-media { min-height: 380px; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card--photo { grid-template-columns: 1fr; }
  .prod-photo { min-height: 280px; }
  .perle-wrap { grid-template-columns: 1fr; gap: 48px; }
  .perle-visual { aspect-ratio: 16 / 10; max-width: 520px; }
  .histoire-grid { grid-template-columns: 1fr; gap: 44px; }
  .histoire-photo { position: static; aspect-ratio: 16 / 10; max-width: 560px; }
  .dist-main { grid-template-columns: 1fr; gap: 32px; text-align: center; justify-items: center; }
  .dist-grid { grid-template-columns: 1fr; }
  .distinctions { padding: 120px 0 100px; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* Hero : sceau plus petit en tablette, garde alignement top-right de hero-content */
  .hero-seal { width: 120px; height: 120px; top: -8px; }
  .seal-core { inset: 22px; }
  .seal-ring text { font-size: 11px; letter-spacing: 1.7px; }
  .hero-eyebrow { max-width: calc(100% - 130px); }
}

@media (max-width: 860px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column; align-items: stretch;
    justify-content: center; gap: 4px;
    padding: 40px 32px;
    background: var(--deep);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links > li > a:not(.nav-cta) {
    font-size: 1.5rem; font-family: var(--font-display);
    padding: 14px 0;
    border-bottom: 1px solid rgba(247,241,230,.1);
  }
  .nav-cta { margin: 22px 0 0; justify-content: center; padding: 16px; }

  .container { padding: 0 24px; }
  .section { padding: 84px 0; }
  .hero { padding: 0 24px 36px; }
  .hero-seal { width: 80px; height: 80px; top: -4px; }
  .seal-core { inset: 14px; }
  .seal-ring text { font-size: 9px; letter-spacing: 1.3px; }
  .hero-eyebrow { max-width: calc(100% - 96px); }
  .hero-row { gap: 30px; }
  .hero-foot { flex-direction: column; gap: 18px; align-items: flex-start; }

  .marquee-track span { font-size: 1.3rem; }
  .manifeste { padding: 90px 0; }
  .manifeste-foot { gap: 30px; }
  .stats { padding-bottom: 84px; }
  .stats-panel { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding: 44px 32px; }
  .feature-body { padding: 42px 30px; }
  .prod-card--solid { padding: 38px 30px; }
  .prod-photo-body { padding: 34px 28px; }
  .prod-list--cols { grid-template-columns: 1fr; }
  .perle { padding: 90px 0; }
  .perle-wrap { padding: 0 24px; }
  .pillars { grid-template-columns: 1fr; }
  .terroir { padding: 100px 24px; }
  .dist-main { padding: 40px 28px; }
  .dist-badge-img { padding: 36px; }
  .insta { padding: 84px 0; }
  .insta-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cta { padding: 100px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; padding: 60px 24px 48px; }
  .footer-bottom { padding: 22px 24px; }
}

@media (max-width: 460px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .stats-panel { grid-template-columns: 1fr; }
  .feature-specs li { flex-direction: column; gap: 3px; }
  .spec-v { text-align: left; }
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal], .word-in { opacity: 1 !important; transform: none !important; }
  .js .reveal-img { clip-path: none !important; }
  .reveal-img img { transform: none !important; }
  .preloader { display: none; }
}
