/* =====================================================
   MAIN.CSS — Géroudet Confection Sàrl
   Styles partagés sur toutes les pages
   ===================================================== */

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f8f6f1;
  color: #0f0f0f;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb { background: #be9f57; border-radius: 2px; }

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(190,159,87,0.2);
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav.scrolled, .nav.compact { height: 112px; }
body.scroll-locked .nav { padding-right: 40px; }
.nav-brand { display: inline-flex; align-items: center; }
.nav-logo { height: 72px; width: auto; transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-menu-button {
  width: 132px;
  height: 54px;
  border-radius: 999px;
  border: 3px solid #be9f57;
  background: #be9f57;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-menu-button:hover,
.nav-menu-button:focus-visible {
  background: transparent;
  color: #be9f57;
  transform: translateY(-1px);
  outline: none;
}
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fullscreen-menu::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: 50px;
  width: min(1000px, 58vw);
  aspect-ratio: 417 / 163;
  background: url('../images/home/logo_menu_geroudet.webp') center / contain no-repeat;
  filter: grayscale(1) brightness(0.22);
  opacity: 0.30;
  pointer-events: none;
}
.fullscreen-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fullscreen-menu-inner {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  padding: 0 40px clamp(14px, 2vh, 34px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.fullscreen-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: clamp(82px, 10vh, 122px);
  flex: 0 0 clamp(82px, 10vh, 122px);
  margin-bottom: clamp(4px, 1.2vh, 22px);
}
body.scroll-locked .fullscreen-menu-top { padding-right: 0; }
.fullscreen-menu-logo img { height: clamp(54px, 6.4vh, 78px); width: auto; }
.fullscreen-menu-close {
  width: 132px;
  height: 54px;
  border-radius: 999px;
  border: 3px solid #be9f57;
  background: #be9f57;
  color: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fullscreen-menu-close:hover,
.fullscreen-menu-close:focus-visible {
  background: transparent;
  color: #be9f57;
  transform: translateY(-1px);
  outline: none;
}
.fullscreen-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr) minmax(260px, 0.55fr);
  gap: clamp(32px, 4vw, 86px);
  align-items: start;
  align-content: start;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: hidden;
  overscroll-behavior: contain;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #be9f57 transparent;
}
.fullscreen-menu-grid::-webkit-scrollbar { width: 8px; }
.fullscreen-menu-grid::-webkit-scrollbar-track { background: transparent; }
.fullscreen-menu-grid::-webkit-scrollbar-thumb { background: #be9f57; border-radius: 999px; }
.fullscreen-menu-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(0px, 3.8vh, 78px);
}
.fullscreen-menu-secondary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(0px, 3.8vh, 78px);
}
.fullscreen-menu-contact {
  align-self: start;
  padding-top: clamp(0px, 3.8vh, 78px);
  color: rgba(255,255,255,0.78);
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 500;
  line-height: 1.55;
}
.nav-language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-language-switcher a {
  width: 42px;
  height: 42px;
  border: 3px solid #be9f57;
  border-radius: 50%;
  background: #0f0f0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #be9f57;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-language-switcher a:hover,
.nav-language-switcher a:focus-visible {
  background: #be9f57;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(190,159,87,0.24);
  outline: none;
}
.nav-language-switcher a.active {
  background: #be9f57;
  color: #ffffff;
}
.nav-language-switcher a.active:hover,
.nav-language-switcher a.active:focus-visible {
  background: #be9f57;
  color: #ffffff;
}
.fullscreen-menu-contact-name {
  color: #be9f57;
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}
.fullscreen-menu-contact address {
  font-style: normal;
  margin-bottom: 22px;
}
.fullscreen-menu-contact p {
  margin: 0 0 12px;
}
.fullscreen-menu-contact a {
  color: inherit;
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fullscreen-menu-contact a:hover,
.fullscreen-menu-contact a:focus-visible {
  color: #be9f57;
  outline: none;
}
.fullscreen-menu-contact-line {
  display: block;
  width: 74px;
  height: 2px;
  margin: 26px 0 18px;
  background: #be9f57;
}
.fullscreen-menu-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fullscreen-menu-social a {
  width: 42px;
  height: 42px;
  border: 3px solid #be9f57;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #be9f57;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fullscreen-menu-social a:hover,
.fullscreen-menu-social a:focus-visible {
  background: #be9f57;
  color: #0f0f0f;
  transform: translateY(-2px);
  outline: none;
}
.fullscreen-menu-social svg {
  width: 17px;
  height: 17px;
}
.fullscreen-menu-link {
  display: grid;
  grid-template-columns: clamp(46px, 5.2vw, 74px) minmax(0, 1fr);
  align-items: baseline;
  gap: clamp(10px, 1.6vw, 18px);
  color: #be9f57;
  line-height: 0.98;
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fullscreen-menu-link span {
  color: rgba(190,159,87,0.72);
  font-weight: 800;
  letter-spacing: 0.03em;
}
.fullscreen-menu-link.level-1 {
  margin-top: clamp(10px, 1.85vh, 40px);
  font-size: clamp(40px, min(4.9vh, 2.9vw), 68px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.fullscreen-menu-primary .fullscreen-menu-link:first-child,
.fullscreen-menu-secondary .fullscreen-menu-link:first-child {
  margin-top: 0;
}
.fullscreen-menu-link.level-1.is-long {
  white-space: nowrap;
}
.fullscreen-menu-link.level-2 {
  display: block;
  margin-top: clamp(3px, 0.65vh, 14px);
  padding-left: clamp(82px, 9vw, 132px);
  font-size: clamp(22px, min(3vh, 1.75vw), 38px);
  font-weight: 800;
}
.fullscreen-menu-link.level-3 {
  display: block;
  margin-top: clamp(2px, 0.48vh, 10px);
  padding-left: clamp(96px, 11vw, 160px);
  font-size: clamp(15px, min(2.05vh, 1.12vw), 26px);
  font-weight: 600;
}
.fullscreen-menu-link:hover,
.fullscreen-menu-link:focus-visible,
.fullscreen-menu-link.active {
  color: #ffffff;
  transform: translateX(6px);
  outline: none;
}

.catalogue-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  padding: 28px;
}
.catalogue-modal.open { display: block; }
.catalogue-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
}
.catalogue-modal-panel {
  position: relative;
  width: min(1800px, 100%);
  height: calc(100vh - 56px);
  margin: 0 auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.catalogue-modal-header {
  min-height: 64px;
  padding: 0 18px 0 24px;
  background: #0f0f0f;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(190,159,87,0.28);
}
.catalogue-modal-header h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex: 1;
}
.catalogue-modal-close {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
  transition: border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.catalogue-modal-close:hover {
  color: #be9f57;
  border-color: #be9f57;
}
.catalogue-modal-close svg { width: 18px; }
.catalogue-modal iframe {
  width: 100%;
  flex: 1;
  border: 0;
  background: #f8f6f1;
}

/* ===========================
   LAYOUT COMMUN
=========================== */
section { position: relative; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #be9f57;
}
.section-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: #be9f57;
}
.section-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f0f0f;
}
.section-title.white { color: #ffffff; }

/* ===========================
   PAGE HERO (pages internes)
=========================== */
.page-hero {
  padding-top: 65px;
  height: clamp(380px, 29vw, 620px);
  min-height: 0;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  width: min(1500px, 100%);
  max-width: 100%;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #be9f57;
  margin-bottom: 20px;
}
.page-hero-tag::before { content: ''; width: 32px; height: 1px; background: #be9f57; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: #be9f57; }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,1);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.65;
}

/* ===========================
   BOUTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #be9f57;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #d4b96e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(190,159,87,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #be9f57;
  background: #be9f57;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 4px;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #ffffff;
  border-color: #be9f57;
  color: #be9f57;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(190,159,87,0.24);
  outline: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 4px;
  transition: border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-outline:hover {
  border-color: #be9f57;
  background: rgba(190,159,87,0.1);
  transform: translateY(-2px);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f0f0f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 18px 36px;
  border-radius: 4px;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #be9f57;
  color: #0f0f0f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 18px 36px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-gold:hover { background: #d4b96e; transform: translateY(-2px); }

.btn-submit {
  display: inline-flex; align-items: center; gap: 12px;
  background: #be9f57; color: #0f0f0f;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
  padding: 18px 36px; border-radius: 4px; cursor: pointer;
  border: none; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 8px;
}
.btn-submit:hover { background: #d4b96e; transform: translateY(-2px); }

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox-close:hover { border-color: #be9f57; background: rgba(190,159,87,0.2); }
.lightbox-close svg { width: 18px; color: #ffffff; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 2px solid #be9f57;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.72);
  color: #be9f57;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: #be9f57;
  color: #ffffff;
  border-color: #be9f57;
  outline: none;
  transform: translateY(-50%) scale(1.06);
}
.lightbox-nav svg {
  width: 26px;
  height: 26px;
}
.lightbox-nav-prev { left: 36px; }
.lightbox-nav-next { right: 36px; }
.lightbox-nav[hidden] { display: none; }
.lightbox-caption { font-size: 20px; font-weight: 700; color: #be9f57; text-align: center; }
.lightbox figure { display: grid; gap: 16px; justify-items: center; margin: 0; }
#lightboxCaption { font-size: 20px; font-weight: 700; color: #be9f57; text-align: center; }

@media (max-width: 760px) {
  .lightbox-nav {
    width: 46px;
    height: 46px;
    top: auto;
    bottom: 28px;
    transform: none;
  }
  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: scale(1.05);
  }
  .lightbox-nav-prev { left: 24px; }
  .lightbox-nav-next { right: 24px; }
  .lightbox.has-gallery-nav .lightbox-caption,
  .lightbox.has-gallery-nav #lightboxCaption {
    margin-bottom: 72px;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.video-modal.open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(10px);
}
.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  background: #0f0f0f;
  border: 1px solid rgba(190,159,87,0.45);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
}
.video-modal-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(15,15,15,0.72);
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-modal-close:hover,
.video-modal-close:focus-visible {
  color: #be9f57;
  border-color: #be9f57;
  background: rgba(190,159,87,0.16);
  outline: none;
}
.video-modal-close svg { width: 18px; }

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 650;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #be9f57;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: #d4b96e;
  box-shadow: 0 18px 42px rgba(190,159,87,0.36);
  outline: none;
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: #0f0f0f;
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(180px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(48px, 7vw, 120px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-logo-img {
  height: 72px;
  margin-bottom: 20px;
}
.footer-brand-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 3px solid #be9f57;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-social a:hover {
  background: rgba(190,159,87,0.15);
  transform: translateY(-2px);
}
.footer-social svg { width: 17px; color: #be9f57; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-col ul li a:hover { color: #be9f57; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom span { color: #be9f57; }
.footer-cookie-link {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
  color: #be9f57;
  outline: none;
}

/* =====================================================
   GDPR / COOKIES
===================================================== */
.gdpr-banner,
.gdpr-modal { font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
.gdpr-banner[hidden],
.gdpr-modal[hidden] { display: none; }
.gdpr-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 5000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  background: rgba(18,18,18,0.96);
  border: 1px solid rgba(190,159,87,0.42);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}
.gdpr-banner-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: #be9f57;
}
.gdpr-banner-text {
  margin: 0;
  max-width: 780px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.gdpr-banner-actions,
.gdpr-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.gdpr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid #be9f57;
  border-radius: 4px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gdpr-btn-gold { background: #be9f57; color: #ffffff; }
.gdpr-btn-light { background: #ffffff; color: #be9f57; }
.gdpr-btn:hover,
.gdpr-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(190,159,87,0.22);
  outline: none;
}
.gdpr-btn-gold:hover,
.gdpr-btn-gold:focus-visible { background: #ffffff; color: #be9f57; }
.gdpr-btn-light:hover,
.gdpr-btn-light:focus-visible { background: #be9f57; color: #ffffff; }
.gdpr-modal {
  position: fixed;
  inset: 0;
  z-index: 5010;
  display: grid;
  place-items: center;
  padding: 24px;
}
.gdpr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.gdpr-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #ffffff;
  color: #0f0f0f;
  box-shadow: 0 32px 90px rgba(0,0,0,0.32);
}
.gdpr-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 30px 32px 22px;
  border-bottom: 1px solid #e8e4dc;
}
.gdpr-modal-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #be9f57;
}
.gdpr-modal h2 { margin: 0; font-size: 30px; line-height: 1.1; }
.gdpr-modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid #e8e4dc;
  border-radius: 50%;
  background: #ffffff;
  color: #0f0f0f;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gdpr-modal-close svg { width: 18px; }
.gdpr-modal-close:hover,
.gdpr-modal-close:focus-visible {
  background: #be9f57;
  border-color: #be9f57;
  color: #ffffff;
  outline: none;
}
.gdpr-modal-body {
  display: grid;
  gap: 14px;
  padding: 26px 32px;
}
.gdpr-modal-body > p {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.65;
  color: #000;
}
.gdpr-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #e8e4dc;
  background: #f8f6f1;
  cursor: pointer;
}
.gdpr-choice.is-locked { cursor: default; }
.gdpr-choice h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #be9f57;
}
.gdpr-choice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #000;
}
.gdpr-lock {
  font-size: 12px;
  font-weight: 800;
  color: #be9f57;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gdpr-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.gdpr-switch span {
  display: block;
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: #d9d9d9;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gdpr-switch span::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gdpr-switch input:checked + span { background: #be9f57; }
.gdpr-switch input:checked + span::after { transform: translateX(26px); }
.gdpr-switch input:focus-visible + span {
  outline: 2px solid #be9f57;
  outline-offset: 3px;
}
.gdpr-modal-actions {
  padding: 22px 32px 30px;
  border-top: 1px solid #e8e4dc;
}
.gdpr-external-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: #0f0f0f;
}
.gdpr-external-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.gdpr-frame-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(18,18,18,0.95), rgba(42,42,42,0.95));
  text-align: center;
}
.gdpr-external-frame.is-loaded .gdpr-frame-placeholder { display: none; }
.gdpr-frame-placeholder h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #be9f57;
}
.gdpr-frame-placeholder p {
  margin: 0 auto 18px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.76);
}

/* ===========================
   KEYFRAMES
=========================== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-height: 980px) and (min-width: 901px) {
  .fullscreen-menu-inner { padding: 0 40px 16px; }
  .fullscreen-menu-top { margin-bottom: 8px; }
  .fullscreen-menu-link { line-height: 1; }
  .fullscreen-menu-link.level-1 { margin-top: clamp(5px, 0.8vh, 10px); font-size: clamp(36px, min(5.35vh, 3.15vw), 60px); }
  .fullscreen-menu-link.level-2 { margin-top: clamp(1px, 0.28vh, 3px); font-size: clamp(20px, min(3.35vh, 2vw), 34px); }
  .fullscreen-menu-link.level-3 { margin-top: 1px; font-size: clamp(14px, min(2.35vh, 1.35vw), 24px); }
  .fullscreen-menu-link.level-2 { padding-left: clamp(72px, 8vw, 108px); }
  .fullscreen-menu-link.level-3 { padding-left: clamp(82px, 9vw, 126px); }
  .fullscreen-menu-primary,
  .fullscreen-menu-secondary,
  .fullscreen-menu-contact { padding-top: clamp(0px, 2.4vh, 24px); }
  .fullscreen-menu-contact { font-size: 14px; }
  .fullscreen-menu-contact-name { font-size: 16px; }
  .fullscreen-menu-social a { width: 38px; height: 38px; }
}
@media (max-height: 760px) and (min-width: 901px) {
  .fullscreen-menu-inner { padding-bottom: 12px; }
  .fullscreen-menu-top { margin-bottom: 4px; }
  .fullscreen-menu-link.level-1 { font-size: clamp(34px, 5.4vh, 42px); }
  .fullscreen-menu-link.level-2 { font-size: clamp(15px, 2.65vh, 21px); }
  .fullscreen-menu-link.level-3 { font-size: clamp(12px, 1.9vh, 15px); }
  .fullscreen-menu-grid { padding: 4px 0; }
  .fullscreen-menu-primary,
  .fullscreen-menu-secondary,
  .fullscreen-menu-contact { padding-top: 4px; }
  .fullscreen-menu-contact { font-size: 13px; line-height: 1.4; }
  .fullscreen-menu-contact-name { margin-bottom: 8px; font-size: 15px; }
  .fullscreen-menu-contact address { margin-bottom: 12px; }
  .fullscreen-menu-contact p { margin-bottom: 8px; }
  .fullscreen-menu-contact-line { margin: 14px 0 12px; }
  .fullscreen-menu-social a { width: 34px; height: 34px; border-width: 2px; }
}
@media (max-width: 1760px) and (min-width: 901px) {
  .page-fr .fullscreen-menu-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); overflow-y: auto; }
  .page-fr .fullscreen-menu-contact { grid-column: 1 / -1; padding-top: clamp(10px, 1.8vh, 22px); }
  .page-fr .fullscreen-menu-link.level-1 { font-size: clamp(36px, min(4.7vh, 3.05vw), 56px); }
}
@media (max-width: 1180px) and (min-width: 901px) {
  .fullscreen-menu-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); overflow-y: auto; }
  .fullscreen-menu-contact { grid-column: 1 / -1; padding-top: 4px; }
}
@media (max-width: 900px) {
  .fullscreen-menu-grid { grid-template-columns: 1fr; gap: 20px; overflow-y: visible; }
  .fullscreen-menu-primary,
  .fullscreen-menu-secondary { padding-top: 0; }
  .fullscreen-menu-contact { padding-top: 12px; }
  .fullscreen-menu-link { grid-template-columns: 64px minmax(0, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .page-hero-content { padding: 60px 40px; }
  .container { padding: 0 24px; }
  .gdpr-banner {
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .gdpr-banner-actions,
  .gdpr-modal-actions {
    justify-content: stretch;
  }
  .gdpr-btn {
    flex: 0 1 auto;
  }
}
@media (max-width: 640px) {
  .nav, .nav.scrolled, .nav.compact { height: 88px; }
  .nav { padding: 0 24px; }
  body.scroll-locked .nav { padding-right: 24px; }
  .nav-logo { height: 54px; }
  .nav-menu-button,
  .fullscreen-menu-close { width: 112px; height: 46px; border-width: 2px; font-size: 11px; }
  .fullscreen-menu-inner {
    padding: 0 24px 38px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-x: none;
  }
  .fullscreen-menu-top { height: 88px; margin-bottom: 52px; }
  .fullscreen-menu-logo img { height: 54px; }
  .nav-actions { gap: 8px; }
  .nav-language-switcher { gap: 6px; }
  .nav-language-switcher a { width: 36px; height: 36px; border-width: 2px; font-size: 10px; }
  .fullscreen-menu-grid,
  .fullscreen-menu-primary,
  .fullscreen-menu-secondary,
  .fullscreen-menu-contact {
    width: 100%;
    min-width: 0;
  }
  .fullscreen-menu-link {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }
  .fullscreen-menu-link.level-1 { margin-top: 16px; font-size: clamp(27px, 9vw, 42px); }
  .fullscreen-menu-link.level-1.is-long { white-space: normal; }
  body.page-de .fullscreen-menu-link.level-1.is-long-de {
    font-size: clamp(24px, 7.4vw, 34px);
    hyphens: auto;
    overflow-wrap: anywhere;
  }
  .fullscreen-menu-link.level-2 { margin-top: 10px; padding-left: 82px; font-size: 22px; }
  .fullscreen-menu-link.level-3 { margin-top: 8px; padding-left: 96px; font-size: 16px; line-height: 1.18; }
  .fullscreen-menu-link:hover,
  .fullscreen-menu-link:focus-visible,
  .fullscreen-menu-link.active { transform: none; }
  .catalogue-modal { padding: 0; }
  .catalogue-modal-panel { height: 100vh; }
  .catalogue-modal-header { min-height: 58px; padding: 0 12px 0 16px; }
  .catalogue-modal-header h2 { font-size: 16px; }
  .page-hero { height: clamp(360px, 62vh, 500px); }
  .page-hero-content { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .back-to-top { right: 18px; bottom: 18px; width: 44px; height: 44px; }
  .back-to-top svg { width: 19px; height: 19px; }
  .gdpr-banner {
    padding: 18px;
  }
  .gdpr-banner-actions {
    flex-direction: column;
  }
  .gdpr-btn {
    width: 100%;
    min-height: 38px;
  }
  .gdpr-modal {
    padding: 12px;
  }
  .gdpr-modal-header,
  .gdpr-modal-body,
  .gdpr-modal-actions {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gdpr-choice {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gdpr-modal-actions {
    flex-direction: column;
  }
}

/* =====================================================
   STYLES SPECIFIQUES AUX PAGES
===================================================== */

/*
 * Styles extraits des pages PHP.
 * Chaque bloc est limite a sa page via la classe <body>.
 */


/* =====================================================
   PAGE : INDEX
===================================================== */

/* ===========================
       HERO
    =========================== */
    body.page-index .hero{
      position: relative; height: 100vh; min-height: 600px;
      overflow: hidden; background: #0f0f0f;
    }
    body.page-index .hero-slides{ position: absolute; inset: 0; }
    body.page-index .hero-slide{
      position: absolute; inset: 0;
      overflow: hidden;
      opacity: 0;
      transition: opacity 1.2s ease;
      pointer-events: none;
    }
    body.page-index .hero-slide::before{
      content: ''; position: absolute; inset: 0; z-index: 0;
      transform: scale(1.05);
      transition: transform 7s ease;
    }
    body.page-index .hero-slide-bg{
      position: absolute; inset: 0; z-index: 0;
      background-size: cover; background-position: center;
      transform: scale(1.05);
      transition: transform 7s ease;
    }
    body.page-index .hero-slide.active{ opacity: 1; }
    body.page-index .hero-slide.active::before,
    body.page-index .hero-slide.active .hero-slide-bg{ transform: scale(1); }
    body.page-index .hero-slide.active.hero-slide-entering::before,
    body.page-index .hero-slide.active.hero-slide-entering .hero-slide-bg{ transform: scale(1.08); }
    body.page-index .hero-slide.active{ pointer-events: auto; }
    body.page-index .hero-slide::after{
      content: ''; position: absolute; inset: 0; z-index: 1;
    }
    body.page-index .hero-content{
      position: relative; z-index: 2; height: 100%;
      display: flex; flex-direction: column; justify-content: center;
      padding: 0 80px; max-width: 1200px;
    }
    body.page-index .hero-tag{
      display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
      opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 0.3s forwards;
    }
    body.page-index .hero-tag::before{ content: ''; width: 40px; height: 1px; background: #be9f57; }
    body.page-index .hero-tag span{ font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #be9f57; }
    body.page-index .hero h1{
      font-size: clamp(42px, 6vw, 88px); font-weight: 800; line-height: 1.05;
      text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9), 0 12px 34px rgba(0, 0, 0, 0.55);
      color: #ffffff; letter-spacing: -0.02em; margin-bottom: 24px;
      opacity: 0; transform: translateY(30px); animation: fadeUp 0.9s ease 0.5s forwards;
    }
    body.page-index .hero h1 em{ font-style: normal; color: #be9f57; }
    body.page-index .hero-desc{
      font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,1);
      font-weight: 300; max-width: 520px; margin-bottom: 44px; line-height: 1.65;
      opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s ease 0.7s forwards;
    }
    body.page-index .hero-actions{
      display: flex; gap: 16px; flex-wrap: wrap;
      opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s ease 0.9s forwards;
    }
    body.page-index .hero-scroll{
      position: absolute; bottom: 40px; left: 80px;
      display: flex; align-items: center; gap: 14px;
      color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase; z-index: 2;
      opacity: 0; animation: fadeIn 1s ease 1.4s forwards;
    }
    body.page-index .hero-scroll-line{
      width: 40px; height: 1px; background: rgba(255,255,255,0.3);
      position: relative; overflow: hidden;
    }
    body.page-index .hero-scroll-line::after{
      content: ''; position: absolute; top: 0; left: -100%;
      width: 100%; height: 100%; background: #be9f57;
      animation: scrollLine 2s ease 1.5s infinite;
    }
    body.page-index .hero-dots{ position: absolute; bottom: 44px; right: 80px; display: flex; gap: 8px; z-index: 2; }
    body.page-index .hero-dot{
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,0.3); cursor: pointer;
      transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    body.page-index .hero-dot.active{ background: #be9f57; transform: scale(1.4); }
    body.page-index .hero-counter{
      position: absolute; inset: auto 80px 72px auto; transform: none;
      width: max-content; min-width: max-content; margin: 0;
      z-index: 2; display: flex; align-items: center; justify-content: flex-end; gap: 8px;
      color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    }
    body.page-index .hero-counter-current{ color: #be9f57; font-size: 18px; font-weight: 700; }

    /* MARQUEE */
    body.page-index .marquee-strip{ background: #be9f57; padding: 14px 0; overflow: hidden; white-space: nowrap; }
    body.page-index .marquee-track{ display: inline-flex; animation: marquee 30s linear infinite; }
    body.page-index .marquee-item{
      display: inline-flex; align-items: center; gap: 32px; padding: 0 18px;
      font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff;
    }
    body.page-index .marquee-item::after{ content: ''; width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: #ffffff; }

    /* ABOUT */
    body.page-index .about{ padding: 120px 0; background: #ffffff; }
    body.page-index .about-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    body.page-index .about-visual{ position: relative; }
    body.page-index .about-img-main{ width: 100%; height: 580px; object-fit: cover; border-radius: 4px; }
    body.page-index .about-img-accent{ position: absolute; bottom: -30px; right: -30px; width: 220px; height: 280px; object-fit: cover; border-radius: 4px; border: 6px solid #ffffff; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
    body.page-index .about-badge{ position: absolute; top: 30px; left: -20px; width: 110px; height: 110px; background: #be9f57; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 12px 40px rgba(190,159,87,0.5); }
    body.page-index .about-badge-num{ font-size: 32px; font-weight: 900; color: #0f0f0f; line-height: 1; }
    body.page-index .about-badge-text{ font-size: 10px; font-weight: 700; color: #0f0f0f; letter-spacing: 0.06em; text-transform: uppercase; }
    body.page-index .about-content{ padding-right: 20px; }
    body.page-index .about-content .section-title{ margin-bottom: 24px; }
    body.page-index .about-content p{ font-size: 17px; color: #555; line-height: 1.75; margin-bottom: 20px; }
    body.page-index .about-content strong{ color: #9a7f3f; font-weight: 700; }
    body.page-index .about-stats{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e8e4dc; border-radius: 8px; overflow: hidden; margin-top: 40px; }
    body.page-index .about-stat{ background: #f8f6f1; padding: 28px 20px; text-align: center; }
    body.page-index .about-stat-num{ font-size: 36px; font-weight: 900; color: #be9f57; line-height: 1; margin-bottom: 6px; }
    body.page-index .about-stat-label{ font-size: 12px; font-weight: 600; color: #888; letter-spacing: 0.06em; text-transform: uppercase; }

    /* EXPERTISE */
    body.page-index .expertise{ padding: 120px 0; background: #ffffff; }
    body.page-index .expertise > .container{ max-width: none; width: 100%; padding: 0 40px; }
    body.page-index .expertise-header{ display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
    body.page-index .expertise-all-link{ white-space: nowrap; }
    body.page-index .expertise-grid{ display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, minmax(0, calc((100vw - 84px) / 3 * 0.889))); gap: 10px; }
    body.page-index .expertise-card{ position: relative; overflow: hidden; min-height: 0; cursor: pointer; background: #2a2a2a; }
    body.page-index .expertise-card::after{ content: ''; position: absolute; inset: 0; z-index: 3; border: 2px solid #be9f57; pointer-events: none; }
    body.page-index .expertise-card:first-child{ grid-row: span 2; }
    body.page-index .expertise-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .expertise-card:hover img,
    body.page-index .expertise-card:focus-visible img{ transform: scale(1.06); filter: brightness(0.6) saturate(0.8); }
    body.page-index .expertise-card-overlay{ position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .expertise-card:hover .expertise-card-overlay,
    body.page-index .expertise-card:focus-visible .expertise-card-overlay{ background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 55%); }
    body.page-index .expertise-card-num{ font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: #be9f57; margin-bottom: 8px; opacity: 0; transform: translateY(10px); transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .expertise-card:hover .expertise-card-num,
    body.page-index .expertise-card:focus-visible .expertise-card-num{ opacity: 1; transform: translateY(0); }
    body.page-index .expertise-card-title{ font-size: 22px; font-weight: 800; color: #ffffff; letter-spacing: -0.01em; margin-bottom: 8px; text-shadow: 0 2px 12px rgba(0,0,0,0.72); }
    body.page-index .expertise-card:first-child .expertise-card-title{ font-size: 28px; }
    body.page-index .expertise-card-desc{ font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .expertise-card:hover .expertise-card-desc,
    body.page-index .expertise-card:focus-visible .expertise-card-desc{ max-height: 80px; margin-bottom: 4px; }
    body.page-index .expertise-card-link{ display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: #be9f57; transform: translateY(10px); opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .expertise-card:hover .expertise-card-link,
    body.page-index .expertise-card:focus-visible .expertise-card-link{ opacity: 1; transform: translateY(0); }
    body.page-index .expertise-card-link svg{ width: 16px; transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .expertise-card-link:hover svg{ transform: translateX(4px); }

    /* PROCESS */
    body.page-index .process{ padding: 120px 0; background: #0f0f0f; overflow: hidden; }
    body.page-index .process > .container{ max-width: none; width: 100%; padding: 0 40px; }
    body.page-index .process-header{ text-align: center; margin-bottom: 80px; }
    body.page-index .process-header .section-tag{ justify-content: center; }
    body.page-index .process-header .section-tag::before{ display: none; }
    body.page-index .process-header .section-tag::after{ content: ''; width: 32px; height: 1px; background: #be9f57; }
    body.page-index .process-lead{ max-width: 620px; margin: 20px auto 0; color: rgba(255,255,255,0.58); font-size: 16px; line-height: 1.7; }
    body.page-index .process-grid{ display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
    body.page-de.page-index .process-grid.process-grid-three{ grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1280px; margin: 0 auto; }
    body.page-index .process-step{ background: #1a1a1a; min-height: 540px; padding: 74px 30px 70px; position: relative; display: flex; flex-direction: column; justify-content: space-between; transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .process-step:hover{ background: #2a2a2a; }
    body.page-index .process-step-num{ font-size: 64px; font-weight: 900; color: rgba(190,159,87,0.1); line-height: 1; margin-bottom: 0; transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .process-step:hover .process-step-num{ color: #be9f57; }
    body.page-index .process-step-icon{ width: 48px; height: 48px; background: #be9f57; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 0; }
    body.page-index .process-step-icon svg{ width: 22px; color: #0f0f0f; }
    body.page-index .process-step h3{ font-size: 18px; font-weight: 700; color: #ffffff; margin-bottom: 0; letter-spacing: -0.01em; }
    body.page-index .process-step p{ font-size: 16px; color: rgba(255,255,255,0.58); line-height: 1.7; }
    body.page-index .process-step::after{ content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: #be9f57; transform: scaleX(0); transition: transform 0.5s ease; transform-origin: left; }
    body.page-index .process-step:hover::after{ transform: scaleX(1); }

    /* GALLERY */
    body.page-index .gallery{ padding: 120px 0; background: #ffffff; }
    body.page-index .gallery-header{ display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
    body.page-index .gallery-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
    body.page-index .gallery-item{ position: relative; overflow: hidden; aspect-ratio: 4/3; background: #e8e4dc; border: 2px solid #be9f57; cursor: pointer; }
    body.page-index .gallery-item:focus-visible{ outline: 3px solid #be9f57; outline-offset: 4px; }
    body.page-index .gallery-item img{ width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease; }
    body.page-index .gallery-item:hover img{ filter: brightness(0.65); }
    body.page-index .gallery-item-info{ position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 30%); opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .gallery-item:hover .gallery-item-info{ opacity: 1; }
    body.page-index .gallery-item-title{ font-size: 14px; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
    body.page-index .gallery-item-cat{ font-size: 12px; color: #ffffff; font-weight: 600; letter-spacing: 0.06em; }

    /* CTA BANNER */
    body.page-index .cta-banner{ padding: 100px 0; background: #be9f57; position: relative; overflow: hidden; }
    body.page-index .cta-banner::before{ content: '1851'; position: absolute; font-size: 300px; font-weight: 900; color: rgba(0,0,0,0.06); right: -20px; top: 50%; transform: translateY(-50%); line-height: 1; pointer-events: none; letter-spacing: -0.05em; }
    body.page-index .cta-banner-inner{ position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
    body.page-index .cta-banner h2{ font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; color: rgba(255,255,255,1); letter-spacing: -0.02em; max-width: 600px; line-height: 1.1; }

    /* SERVICES STRIP */
    body.page-index .services-strip{ padding: 120px 0; background: #f8f6f1; }
    body.page-index .services-header{ max-width: 600px; margin-bottom: 64px; }
    body.page-index .services-header p{ margin-top: 20px; font-size: 17px; color: #666; line-height: 1.7; }
    body.page-index .services-list{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    body.page-index .service-item{ background: #ffffff; padding: 44px 36px; transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); border-bottom: 2px solid transparent; }
    body.page-index .service-item:hover{ background: #0f0f0f; transform: translateY(-4px); border-bottom-color: #be9f57; }
    body.page-index .service-item:hover .service-title{ color: #ffffff; }
    body.page-index .service-item:hover .service-desc{ color: rgba(255,255,255,0.6); }
    body.page-index .service-icon{ width: 52px; height: 52px; background: #f8f6f1; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .service-item:hover .service-icon{ background: #be9f57; }
    body.page-index .service-icon svg{ width: 24px; color: #be9f57; }
    body.page-index .service-item:hover .service-icon svg{ color: #0f0f0f; }
    body.page-index .service-title{ font-size: 18px; font-weight: 700; color: #0f0f0f; margin-bottom: 12px; letter-spacing: -0.01em; transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .service-desc{ font-size: 14px; color: #777; line-height: 1.65; transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

    /* CLIENTS */
    body.page-index .clients{ padding: 76px 0 112px; background: #ffffff; overflow: hidden; position: relative; }
    body.page-index .clients::before{ content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 12px; background: linear-gradient(180deg, transparent 0 3px, rgba(190,159,87,0.95) 3px 5px, transparent 5px 8px, rgba(190,159,87,0.45) 8px 9px, transparent 9px 100%); }
    body.page-index .clients::after{ display: none; }
    body.page-index .clients-label{ text-align: center; font-size: 20px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; color: #be9f57; margin-bottom: 46px; }
    body.page-index .clients-track-wrapper{ overflow-x: auto; overflow-y: hidden; cursor: grab; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; }
    body.page-index .clients-track-wrapper::-webkit-scrollbar{ width: 0; height: 0; display: none; background: transparent; }
    body.page-index .clients-track-wrapper::-webkit-scrollbar-track,
    body.page-index .clients-track-wrapper::-webkit-scrollbar-thumb{ display: none; background: transparent; }
    body.page-index .clients-track-wrapper.is-dragging{ cursor: grabbing; user-select: none; }
    body.page-index .clients-track{ display: flex; width: max-content; gap: 76px; padding-bottom: 0; }
    body.page-index .client-logo-item{ flex-shrink: 0; height: 128px; display: flex; align-items: center; outline: none; text-decoration: none; color: inherit; }
    body.page-index .client-logo-item:focus-visible img{ opacity: 0.9; filter: grayscale(0); }
    body.page-index .client-logo-item img{ height: 100%; width: auto; object-fit: contain; opacity: 1; filter: grayscale(1); transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .client-logo-item img:hover{ opacity: 0.9; filter: grayscale(0); }
    .client-logo-tooltip{
      position: fixed;
      z-index: 9999;
      max-width: min(320px, calc(100vw - 32px));
      padding: 11px 16px;
      border: 1px solid #ffffff;
      border-radius: 6px;
      background: #be9f57;
      color: #ffffff;
      box-shadow: 0 18px 42px rgba(0,0,0,0.28);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: 0.02em;
      text-align: center;
      pointer-events: none;
      opacity: 0;
      transform: translate(-50%, -100%) translateY(6px);
      transition: opacity 0.18s ease, transform 0.18s ease;
      white-space: normal;
    }
    .client-logo-tooltip::after{
      content: '';
      position: absolute;
      left: 50%;
      bottom: -6px;
      width: 10px;
      height: 10px;
      border-right: 1px solid #ffffff;
      border-bottom: 1px solid #ffffff;
      background: #be9f57;
      transform: translateX(-50%) rotate(45deg);
    }
    .client-logo-tooltip.visible{
      opacity: 1;
      transform: translate(-50%, -100%) translateY(0);
    }

    /* CONTACT STRIP */
    body.page-index .contact-strip{ padding: 120px 0; background: #ffffff; }
    body.page-index .contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    body.page-index .contact-map{ width: 100%; height: 520px; margin-top: 184px; border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
    body.page-index .contact-map iframe{ width: 100%; height: 100%; border: none; }
    body.page-index .contact-info .section-title{ margin-bottom: 32px; }
    body.page-index .contact-detail{ display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid #e8e4dc; }
    body.page-index .contact-detail:last-of-type{ border-bottom: none; }
    body.page-index .contact-detail-icon{ width: 44px; height: 44px; background: #f8f6f1; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    body.page-index .contact-detail-icon svg{ width: 20px; color: #be9f57; }
    body.page-index .contact-detail-content h4{ font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #be9f57; margin-bottom: 6px; }
    body.page-index .contact-detail-content p{ font-size: 15px; color: #555; line-height: 1.6; }
    body.page-index .contact-detail-content a{ color: #0f0f0f; font-weight: 600; transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-index .contact-detail-content a:hover{ color: #be9f57; }
    body.page-index .contact-page-link{ margin-top: 24px; display: inline-flex; }

    /* RESPONSIVE HOME */
    @media (max-width: 1400px){
      body.page-index .process-grid { grid-template-columns: repeat(3, 1fr); }
      body.page-index .process-step { min-height: 480px; padding: 68px 36px 64px; }
      body.page-index .process-step-num { font-size: 80px; }
      body.page-index .process-step h3 { font-size: 18px; }
    }
    @media (max-width: 1100px){
      body.page-index .expertise-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
      body.page-index .expertise-card { aspect-ratio: 9/8; }
      body.page-index .expertise-card:first-child { grid-row: span 1; }
      body.page-index .process-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-de.page-index .process-grid.process-grid-three { grid-template-columns: repeat(2, 1fr); }
      body.page-index .services-list { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      body.page-index .about-grid{ grid-template-columns: 1fr; gap: 48px; }
      body.page-index .about-img-accent{ display: none; }
      body.page-index .about-img-main{ height: 400px; }
      body.page-index .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
      body.page-index .contact-grid{ grid-template-columns: 1fr; }
      body.page-index .contact-map{ height: 420px; margin-top: 0; }
      body.page-index .hero-content{ padding: 0 40px; }
      body.page-index .hero-scroll{ left: 40px; }
      body.page-index .hero-dots{ right: 40px; }
      body.page-index .hero-counter{ inset: auto 40px 72px auto; }
      body.page-index .expertise-header{ flex-direction: column; align-items: flex-start; gap: 20px; }
      body.page-index .gallery-header{ flex-direction: column; align-items: flex-start; gap: 20px; }
      body.page-index .cta-banner-inner{ flex-direction: column; text-align: center; }
    }
    @media (max-width: 640px) {
      body.page-index .hero-content{ padding: 0 24px; }
      body.page-index .hero-scroll{ display: none; }
      body.page-index .process > .container{ padding: 0 24px; }
      body.page-index .expertise-grid{ grid-template-columns: 1fr; }
      body.page-index .process-grid{ grid-template-columns: 1fr; }
      body.page-de.page-index .process-grid.process-grid-three{ grid-template-columns: 1fr; }
      body.page-index .process-step{ min-height: auto; padding: 56px 30px; justify-content: flex-start; gap: 28px; }
      body.page-index .services-list{ grid-template-columns: 1fr; }
      body.page-index .about-stats{ grid-template-columns: 1fr; }
      body.page-index .hero-counter{ display: none; }
      body.page-index .hero-dots{ right: 24px; bottom: 80px; }
      body.page-index .clients{ padding: 58px 0 92px; }
      body.page-index .clients-track{ gap: 54px; }
      body.page-index .client-logo-item{ height: 102px; }
    }

    @media (min-width: 901px){
      body.page-de.page-index .expertise-grid{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: none;
      }
      body.page-de.page-index .expertise-card{
        aspect-ratio: 4 / 3;
      }
      body.page-de.page-index .expertise-card:first-child{
        grid-row: auto;
      }
      body.page-de.page-index .expertise-card:first-child .expertise-card-title{
        font-size: 22px;
      }
    }


/* =====================================================
   PAGE : UNIFORMES
===================================================== */

/* =====================================================
   PAGE : PRESENTATION
===================================================== */
body.page-presentation .page-hero-bg{ background-image: url('../images/presentation/ib_presentation_12.webp'); }
body.page-presentation .presentation-about{ padding: 120px 0; background: #ffffff; }
body.page-presentation .about-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
body.page-presentation .about-visual{ position: relative; align-self: stretch; min-height: 0; margin-top: 60px; }
body.page-presentation .about-img-main{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
body.page-presentation .about-img-accent{ position: absolute; bottom: 30px; right: -30px; width: 220px; height: 280px; object-fit: cover; border-radius: 4px; border: 6px solid #ffffff; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
body.page-presentation .about-badge{ position: absolute; top: 30px; left: -20px; width: 110px; height: 110px; background: #be9f57; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 12px 40px rgba(190,159,87,0.5); }
body.page-presentation .about-badge-num{ font-size: 32px; font-weight: 900; color: #0f0f0f; line-height: 1; }
body.page-presentation .about-badge-text{ font-size: 10px; font-weight: 700; color: #0f0f0f; letter-spacing: 0.06em; text-transform: uppercase; }
body.page-presentation .about-content{ padding-right: 20px; }
body.page-presentation .about-content .section-title{ margin-bottom: 24px; }
body.page-presentation .title-gold-underline{ position: relative; display: inline-block; }
body.page-presentation .title-gold-underline::after{ content: ''; position: absolute; left: 0.04em; right: 0.04em; bottom: 0.0em; height: 3px; background: rgba(190,159,87,1); border-radius: 999px; }
body.page-presentation .about-content p{ font-size: 20px; color: #000; line-height: 1.75; margin-bottom: 20px; }
body.page-presentation .about-content a{ color: #be9f57; font-weight: 800; transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
body.page-presentation .about-content a:hover,
body.page-presentation .about-content a:focus-visible{ color: #9a7f3f; }
body.page-presentation .about-content a em{ font-style: normal; font-weight: inherit; }
body.page-presentation .about-content strong{ color: #9a7f3f; font-weight: 700; }
body.page-presentation .about-stats{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #e8e4dc; border-radius: 8px; overflow: hidden; margin-top: 40px; }
body.page-presentation .about-stat{ background: #f8f6f1; padding: 28px 20px; text-align: center; }
body.page-presentation .about-stat-num{ font-size: 36px; font-weight: 900; color: #be9f57; line-height: 1; margin-bottom: 6px; }
body.page-presentation .about-stat-label{ font-size: 12px; font-weight: 600; color: #888; letter-spacing: 0.06em; text-transform: uppercase; }
body.page-presentation .presentation-team{ padding: 110px 0 120px; background: #f8f6f1; border-top: 1px solid rgba(190,159,87,0.35); }
body.page-presentation .presentation-team > .container{ max-width: 1800px; }
body.page-presentation .presentation-team-header{ max-width: 1200px; margin: 0 auto 54px; }
body.page-presentation .presentation-team-header .section-title{ margin: 14px 0 18px; }
body.page-presentation .presentation-team-header > p{ max-width: 680px; font-size: 20px; line-height: 1.65; color: #000000; }
body.page-presentation .presentation-team-grid{ display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; width: 100%; max-width: 1200px; margin: 0 auto; }
body.page-presentation .team-card{ position: relative; min-width: 0; min-height: 350px; padding: clamp(30px, 2.2vw, 42px); overflow: hidden; background: #111111; border: 1px solid rgba(190,159,87,0.42); border-radius: 4px; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
body.page-presentation .team-card::before{ content: ''; position: absolute; top: 0; left: 0; width: 86px; height: 4px; background: #be9f57; transition: width 0.45s ease; }
body.page-presentation .team-card:hover{ transform: translateY(-5px); border-color: #be9f57; box-shadow: 0 22px 52px rgba(15,15,15,0.18); }
body.page-presentation .team-card:hover::before{ width: 100%; }
body.page-presentation .team-card-head{ display: grid; grid-template-columns: clamp(145px, 9vw, 170px) minmax(0, 1fr); gap: clamp(28px, 2.2vw, 40px); align-items: center; }
body.page-presentation .team-portrait-placeholder{ width: clamp(145px, 9vw, 170px); height: clamp(145px, 9vw, 170px); border-radius: 50%; display: grid; place-items: center; background: #be9f57; border: 6px solid #242424; box-shadow: 0 0 0 2px #be9f57; color: #111111; font-size: 32px; font-weight: 900; line-height: 1; transition: transform 0.4s ease; }
body.page-presentation .team-portrait{ width: clamp(145px, 9vw, 170px); height: clamp(145px, 9vw, 170px); border-radius: 50%; object-fit: cover; object-position: center top; border: 6px solid #242424; box-shadow: 0 0 0 2px #be9f57; transition: transform 0.4s ease; }
body.page-presentation .team-card:hover .team-portrait-placeholder,
body.page-presentation .team-card:hover .team-portrait{ transform: scale(1.035); }
body.page-presentation .team-identity{ min-width: 0; }
body.page-presentation .team-identity h3{ color: #ffffff; font-size: clamp(25px, 1.45vw, 32px); font-weight: 900; line-height: 1.08; overflow-wrap: anywhere; }
body.page-presentation .team-identity p{ margin-top: 12px; color: #be9f57; font-size: 14px; font-weight: 800; line-height: 1.4; letter-spacing: 0.06em; text-transform: uppercase; }
body.page-presentation .team-contact{ margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(190,159,87,0.48); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
body.page-presentation .team-contact p{ min-width: 0; color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.5; overflow-wrap: anywhere; }
body.page-presentation .team-contact span{ display: block; margin-bottom: 5px; color: #be9f57; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 900px) {
  body.page-presentation .about-grid{ grid-template-columns: 1fr; gap: 48px; }
  body.page-presentation .about-visual{ min-height: 400px; margin-top: 0; }
  body.page-presentation .about-img-accent{ display: none; }
  body.page-presentation .about-img-main{ height: 100%; }
}
@media (max-width: 640px) {
  body.page-presentation .presentation-about{ padding: 80px 0; }
  body.page-presentation .about-stats{ grid-template-columns: 1fr; }
  body.page-presentation .presentation-team{ padding: 76px 0 82px; }
  body.page-presentation .presentation-team-header{ margin-bottom: 36px; }
  body.page-presentation .presentation-team-grid{ grid-template-columns: 1fr; gap: 16px; }
  body.page-presentation .team-card{ min-height: 310px; padding: 28px 24px; }
  body.page-presentation .team-card-head{ grid-template-columns: 92px minmax(0, 1fr); gap: 20px; }
  body.page-presentation .team-portrait-placeholder,
  body.page-presentation .team-portrait{ width: 92px; height: 92px; }
  body.page-presentation .team-contact{ grid-template-columns: 1fr; margin-top: 34px; gap: 14px; }
}
@media (max-width: 420px) {
  .nav { padding: 0 16px; }
  body.scroll-locked .nav { padding-right: 16px; }
  .nav-logo { height: 46px; }
  .nav-menu-button { width: 86px; height: 42px; }
  .nav-language-switcher { gap: 5px; }
  .nav-language-switcher a { width: 32px; height: 32px; font-size: 9px; }
}

/* PAGE HERO */
    body.page-uniformes .page-hero-bg{ background-image: url('../images/home/ib1_uniformes.webp'); }
    body.page-uniformes .container{ max-width: 1800px; }
    body.page-uniformes .cat-section-header{ max-width: 1280px; }

    /* TABS */
    body.page-uniformes .category-nav{ background: #0f0f0f; position: sticky; top: 112px; z-index: 100; border-bottom: 1px solid rgba(190,159,87,0.35); box-shadow: 0 2px 20px rgba(0,0,0,0.18); }
    body.page-uniformes .category-nav-inner{ max-width: 1800px; margin: 0 auto; padding: 0 40px; display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
    body.page-uniformes .category-nav-inner::-webkit-scrollbar{ display: none; }
    body.page-uniformes .cat-tab{ flex-shrink: 0; padding: 18px 24px; font-size: 16px; font-weight: 500; letter-spacing: 0.04em; color: #be9f57; cursor: pointer; position: relative; transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); white-space: nowrap; border: none; background: none; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
    body.page-uniformes .cat-tab::after{ content: ''; position: absolute; bottom: 0; left: 24px; right: 24px; height: 2px; background: #be9f57; transform: scaleX(0); transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-uniformes .cat-tab:hover{ color: #d4b96e; }
    body.page-uniformes .cat-tab.active{ color: #ffffff; }
    body.page-uniformes .cat-tab.active::after{ transform: scaleX(1); }
    body.page-uniformes .cat-section{ padding: 80px 0; display: none; }
    body.page-uniformes .cat-section.active{ display: block; }
    body.page-uniformes .cat-section-header{ margin-bottom: 56px; }
    body.page-uniformes .cat-section-header h2{ font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
    body.page-uniformes .cat-section-header p{ font-size: 18px; color: #666; max-width: 640px; line-height: 1.7; }
    body.page-uniformes .uniformes-intro{ display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr); gap: 56px; align-items: start; margin-bottom: 72px; padding-bottom: 48px; border-bottom: 1px solid #e8e4dc; }
    body.page-uniformes .uniformes-intro-copy{ padding-top: 34px; font-size: 20px; color: #000000; line-height: 1.75; }
    body.page-uniformes .uniformes-intro-copy p + p{ margin-top: 16px; }
    body.page-uniformes .uniformes-intro-copy .uniformes-cta-link{ margin-top: 22px; }
    body.page-uniformes .uniformes-cta-link{
      flex-shrink: 0;
      margin-bottom: 4px;
      min-height: 52px;
      padding: 17px 30px;
      font-size: 16px;
      letter-spacing: 0.06em;
      line-height: 1.2;
      text-transform: uppercase;
    }
    body.page-uniformes .uniform-family{ padding: 52px 0 12px; border-top: 1px solid #e8e4dc; }
    body.page-uniformes .uniform-family:first-of-type{ padding-top: 0; border-top: none; }
    body.page-uniformes .uniform-family-header{ max-width: 900; margin-bottom: 30px; }
    body.page-uniformes .uniform-family-header h3{ font-size: 18px; font-weight: 800; letter-spacing: 0; line-height: 1.25; color: #be9f57; margin-bottom: 12px; }
    body.page-uniformes .uniform-family-header p{ font-size: 16px; color: #666; line-height: 1.7; }
    body.page-uniformes .uniform-group-list{ display: grid; gap: 34px; }
    body.page-uniformes .uniform-group{ min-width: 0; }
    body.page-uniformes .uniform-group h4{ font-size: 18px; font-weight: 800; color: #be9f57; letter-spacing: 0; margin-bottom: 14px; line-height: 1.25; }
    body.page-uniformes .portfolio-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    body.page-uniformes .portfolio-grid-three{ grid-template-columns: repeat(3, 1fr); }
    body.page-uniformes .portfolio-grid-single-third .portfolio-item{ grid-column: 1 / -1; }
    body.page-uniformes .portfolio-grid-single-third .portfolio-image-wrap{ aspect-ratio: 4/1; }
    body.page-uniformes .portfolio-grid-single-third .portfolio-item img{ height: 100%; object-fit: cover; object-position: center; }
    body.page-uniformes .portfolio-grid-single-third .portfolio-item img.image-position-top{ object-position: center top; }
    body.page-uniformes .portfolio-item{ position: relative; overflow: visible; background: transparent; cursor: pointer; text-align: left; width: 100%; min-width: 0; color: inherit; }
    body.page-uniformes .portfolio-image-wrap{ position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: #e8e4dc; }
    body.page-uniformes .portfolio-item img{ display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: filter 0.4s ease; }
    body.page-uniformes .portfolio-item:hover img{ filter: brightness(0.75); }
    body.page-uniformes .portfolio-item-overlay{ position: static; display: block; padding: 12px 0 0; background: none; opacity: 1; }
    body.page-uniformes .portfolio-item:hover .portfolio-item-overlay{ opacity: 1; }
    body.page-uniformes .portfolio-item-title{ font-size: 18px; font-weight: 700; color: #be9f57; line-height: 1.35; margin-bottom: 2px; }
    body.page-uniformes .portfolio-item-cat{ font-size: 12px; color: #be9f57; font-weight: 600; }
    body.page-uniformes .portfolio-item-zoom{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); width: 44px; height: 44px; background: #be9f57; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-uniformes .portfolio-item:hover .portfolio-item-zoom{ opacity: 1; transform: translate(-50%, -50%) scale(1); }
    body.page-uniformes .portfolio-item-zoom svg{ width: 20px; color: #0f0f0f; }
    body.page-uniformes .portfolio-carousel{ position: relative; }
    body.page-uniformes .portfolio-carousel-track{ display: flex; align-items: flex-start; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
    body.page-uniformes .portfolio-carousel-track::-webkit-scrollbar{ display: none; }
    body.page-uniformes .portfolio-carousel-track .portfolio-item{ flex: 0 0 calc((100% - 72px) / 4); min-width: 0; scroll-snap-align: start; }
    body.page-uniformes .portfolio-carousel-arrow{ position: absolute; top: calc(50% - 24px); z-index: 2; width: 48px; height: 48px; border-radius: 50%; background: #be9f57; color: #0f0f0f; box-shadow: 0 10px 30px rgba(0,0,0,0.22); display: flex; align-items: center; justify-content: center; transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-uniformes .portfolio-carousel-prev{ left: 12px; }
    body.page-uniformes .portfolio-carousel-next{ right: 12px; }
    body.page-uniformes .portfolio-carousel-arrow:hover{ background: #d4b96e; transform: translateY(-1px); box-shadow: 0 14px 34px rgba(0,0,0,0.28); }
    body.page-uniformes .portfolio-carousel-arrow svg{ width: 18px; }
    body.page-uniformes .acc-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
    body.page-uniformes .section-cta{ background: #0f0f0f; padding: 64px; border-radius: 4px; margin-top: 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
    body.page-uniformes .section-cta h3{ font-size: 26px; font-weight: 800; color: #ffffff; letter-spacing: -0.01em; }
    body.page-uniformes .section-cta p{ font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 8px; }

    @media (max-width: 900px) {
      body.page-uniformes .uniformes-intro{ grid-template-columns: 1fr; gap: 28px; }
      body.page-uniformes .uniformes-intro-copy{ padding-top: 0; }
      body.page-uniformes .portfolio-grid{ grid-template-columns: repeat(2, 1fr); }
      body.page-uniformes .portfolio-grid-three{ grid-template-columns: repeat(2, 1fr); }
      body.page-uniformes .portfolio-carousel-track .portfolio-item{ flex-basis: calc((100% - 24px) / 2); }
      body.page-uniformes .acc-grid{ grid-template-columns: repeat(3, 1fr); }
      body.page-uniformes .section-cta{ flex-direction: column; padding: 40px; text-align: center; }
    }
    @media (max-width: 640px) {
      body.page-uniformes .category-nav{ top: 88px; }
      body.page-uniformes .uniformes-intro{ margin-bottom: 52px; padding-bottom: 36px; }
      body.page-uniformes .uniformes-cta-link{ width: 100%; min-height: 56px; white-space: normal; text-align: center; }
      body.page-uniformes .uniform-family{ padding-top: 40px; }
      body.page-uniformes .uniform-group-list{ gap: 28px; }
      body.page-uniformes .portfolio-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
      body.page-uniformes .portfolio-carousel-track{ gap: 16px; }
      body.page-uniformes .portfolio-carousel-track .portfolio-item{ flex-basis: calc((100% - 16px) / 2); }
      body.page-uniformes .portfolio-carousel-arrow{ top: calc(50% - 20px); width: 40px; height: 40px; }
      body.page-uniformes .acc-grid{ gap: 16px; }
    }


/* =====================================================
   PAGE : ETENDARDS
===================================================== */

/* PAGE HERO */
    body.page-etendards .page-hero{ padding-top: 65px; }
    body.page-etendards .page-hero-bg{ background-image: url('../images/etendards/ib1_etendard.webp'); }
    body.page-etendards .page-hero h1{ font-size: clamp(38px, 5.5vw, 74px); }
    body.page-etendards .container.etendards-wide{ max-width: 1800px; }
    body.page-etendards .etendards-detail-hero{ height: 440px; min-height: 440px; }

    /* TABS */
    body.page-etendards .category-nav{ background: #0f0f0f; position: sticky; top: 112px; z-index: 100; border-bottom: 1px solid rgba(190,159,87,0.35); box-shadow: 0 2px 20px rgba(0,0,0,0.18); }
    body.page-etendards .category-nav-inner{ max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 4px; overflow: visible; scrollbar-width: none; }
    body.page-etendards .category-nav-inner::-webkit-scrollbar{ display: none; }
    body.page-etendards .cat-tab{ flex-shrink: 0; padding: 18px 24px; font-size: 16px; font-weight: 500; letter-spacing: 0.04em; color: #be9f57; cursor: pointer; position: relative; transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); white-space: nowrap; border: none; background: none; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
    body.page-etendards .cat-tab::after{ content: ''; position: absolute; bottom: 0; left: 24px; right: 24px; height: 2px; background: #be9f57; transform: scaleX(0); transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-etendards .cat-tab:hover{ color: #d4b96e; }
    body.page-etendards .cat-tab.active{ color: #ffffff; }
    body.page-etendards .cat-tab.active::after{ transform: scaleX(1); }
    body.page-etendards .cat-dropdown{ position: relative; flex-shrink: 0; }
    body.page-etendards .cat-dropdown-toggle{ display: inline-flex; align-items: center; gap: 8px; }
    body.page-etendards .cat-dropdown-icon{ transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-etendards .cat-dropdown-toggle[aria-expanded="true"] .cat-dropdown-icon,
    body.page-etendards .cat-dropdown:not(.suppress-hover):hover .cat-dropdown-icon,
    body.page-etendards .cat-dropdown:not(.suppress-hover):focus-within .cat-dropdown-icon{ transform: rotate(180deg); }
    body.page-etendards .cat-dropdown-menu{ position: absolute; top: calc(100% + 10px); left: 8px; min-width: 260px; padding: 8px; background: #0f0f0f; border: 1px solid rgba(190,159,87,0.42); box-shadow: 0 24px 60px rgba(0,0,0,0.28); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 20; }
    body.page-etendards .cat-dropdown.open .cat-dropdown-menu,
    body.page-etendards .cat-dropdown:not(.suppress-hover):hover .cat-dropdown-menu,
    body.page-etendards .cat-dropdown:not(.suppress-hover):focus-within .cat-dropdown-menu{ opacity: 1; visibility: visible; transform: translateY(0); }
    body.page-etendards .cat-dropdown-item{ display: block; width: 100%; padding: 12px 14px; border: 0; background: transparent; color: #be9f57; cursor: pointer; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 16px; font-weight: 500; letter-spacing: 0.02em; line-height: 1.3; text-align: left; transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-etendards .cat-dropdown-item:hover,
    body.page-etendards .cat-dropdown-item:focus-visible,
    body.page-etendards .cat-dropdown-item.active{ background: #be9f57; color: #ffffff; outline: none; }
    body.page-etendards .cat-tab:focus-visible{ outline: 2px solid #be9f57; outline-offset: -4px; }
    body.page-etendards .anchor-target{ display: block; position: relative; top: -150px; visibility: hidden; }
    body.page-etendards .cat-section{ padding: 80px 0; display: none; }
    body.page-etendards .cat-section.active{ display: block; }
    body.page-etendards .cat-section-header{ margin-bottom: 56px; }
    body.page-etendards .cat-section-header h2{ font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
    body.page-etendards .cat-section-header p{ font-size: 20px; color: #fff; max-width: 640px; line-height: 1.7; }
    body.page-etendards .banner-intro{ display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr); gap: 56px; align-items: start; margin-bottom: 72px; padding-bottom: 48px; border-bottom: 1px solid #e8e4dc; }
    body.page-etendards .etendards-detail-page .banner-intro{ grid-template-columns: minmax(320px, 1fr) auto; align-items: end; }
    body.page-etendards .banner-intro-copy{ padding-top: 34px; font-size: 16px; color: #666; line-height: 1.75; }
    body.page-etendards .banner-intro-copy p + p{ margin-top: 16px; }
    body.page-etendards .banner-intro-copy .etendards-cta-link{ margin-top: 22px; }
    body.page-etendards .etendards-detail-page .banner-intro-copy{ grid-column: 1; padding-top: 0; }
    body.page-etendards .banner-intro-action{ grid-column: 2; grid-row: 1; align-self: end; justify-self: end; }
    body.page-etendards .banner-subsection{ padding: 72px 0; border-bottom: 1px solid #e8e4dc; }
    body.page-etendards .banner-subsection:first-of-type{ padding-top: 0; }
    body.page-etendards .banner-subsection:last-child{ border-bottom: 0; }
    body.page-etendards .banner-subsection-header{ display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 36px; }
    body.page-etendards .banner-subsection-header h2{ font-size: clamp(28px, 3.1vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; }
    body.page-etendards .banner-subsection-header p{ max-width: 760px; color: #666; font-size: 15px; line-height: 1.75; }
    body.page-etendards .etendards-cta-link{
      flex-shrink: 0;
      margin-bottom: 4px;
      min-height: 52px;
      padding: 17px 30px;
      font-size: 16px;
      letter-spacing: 0.06em;
      line-height: 1.2;
      text-transform: uppercase;
    }
    body.page-etendards .etendards-work-group{ margin-top: 36px; }
    body.page-etendards .etendards-work-group + .etendards-work-group{ margin-top: 64px; }
    body.page-etendards .work-group-head{ display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
    body.page-etendards .work-group-head h3{ color: #be9f57; font-size: 18px; font-weight: 800; letter-spacing: 0.01em; }
    body.page-etendards .restoration-services{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 72px; }
    body.page-etendards .restoration-service{ background: #ffffff; border: 1px solid #e8e4dc; padding: 28px; display: grid; gap: 22px; align-content: start; transition: border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-etendards .restoration-service:hover{ border-color: rgba(190,159,87,0.42); box-shadow: 0 18px 45px rgba(0,0,0,0.08); transform: translateY(-2px); }
    body.page-etendards .restoration-service img{ width: 100%; max-height: 100%; object-fit: contain; background: #f8f6f1; }
    body.page-etendards .restoration-service h3{ color: #be9f57; font-size: 18px; font-weight: 800; margin-bottom: 10px; }
    body.page-etendards .restoration-service p{ color: #666; font-size: 15px; line-height: 1.7; }
    body.page-etendards .portfolio-grid-two{ grid-template-columns: repeat(2, 1fr); }
    body.page-etendards .accessory-sections{ display: grid; gap: 56px; }
    body.page-etendards .accessory-section{ display: grid; grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr); gap: 48px; align-items: start; padding-bottom: 56px; border-bottom: 1px solid #e8e4dc; }
    body.page-etendards .accessory-section:last-child{ border-bottom: 0; padding-bottom: 0; }
    body.page-etendards .accessory-section-copy h3{ color: #be9f57; font-size: 18px; font-weight: 800; letter-spacing: 0; line-height: 1.25; margin-bottom: 14px; }
    body.page-etendards .accessory-section-copy p{ color: #666; font-size: 15px; line-height: 1.75; max-width: 940px; }
    body.page-etendards .accessory-section .portfolio-grid{ grid-template-columns: 1fr; }
    body.page-etendards .accessory-section .portfolio-grid-two{ grid-template-columns: 1fr; }
    body.page-etendards .accessory-section .portfolio-item:hover img{ transform: none; filter: none; }

    /* FEATURE BLOCK */
    body.page-etendards .feature-block{ background: #0f0f0f; padding: 72px; border-radius: 4px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 56px; }
    body.page-etendards .feature-block-img{ width: 100%; height: 380px; object-fit: cover; border-radius: 4px; }
    body.page-etendards .feature-block-content h2{ font-size: 32px; font-weight: 800; color: #ffffff; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 20px; }
    body.page-etendards .feature-block-content p{ font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 12px; }
    body.page-etendards .feature-block-content strong{ color: #be9f57; font-weight: 700; }

    /* BANNER TYPES */
    body.page-etendards .banner-types{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 64px; }
    body.page-etendards .banner-type-card{ background: #ffffff; padding: 36px 28px; border-bottom: 2px solid transparent; transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-etendards .banner-type-card:hover{ background: #f8f6f1; border-bottom-color: #be9f57; }
    body.page-etendards .banner-type-num{ font-size: 56px; font-weight: 900; color: rgba(190,159,87,0.12); line-height: 1; margin-bottom: 16px; }
    body.page-etendards .banner-type-card h3{ font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px; }
    body.page-etendards .banner-type-card p{ font-size: 14px; color: #777; line-height: 1.65; }

    /* PORTFOLIO */
    body.page-etendards .portfolio-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    body.page-etendards .portfolio-grid-three{ grid-template-columns: repeat(3, 1fr); }
    body.page-etendards .portfolio-item{ position: relative; display: block; overflow: hidden; background: #e8e4dc; cursor: pointer; border: 0; padding: 0; text-align: left; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
    body.page-etendards .portfolio-image-wrap{ position: relative; display: block; overflow: hidden; background: #e8e4dc; }
    body.page-etendards .portfolio-item img{ display: block; width: 100%; height: auto; object-fit: contain; transition: transform 0.6s ease, filter 0.4s ease; }
    body.page-etendards .portfolio-item:hover img{ transform: scale(1.07); filter: brightness(0.65); }
    body.page-etendards .portfolio-item:focus-visible{ outline: 2px solid #be9f57; outline-offset: 3px; }
    body.page-etendards .portfolio-item-overlay{ position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%); opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-etendards .portfolio-item:hover .portfolio-item-overlay{ opacity: 1; }
    body.page-etendards .portfolio-item-title{ font-size: 14px; font-weight: 700; color: #ffffff; margin-bottom: 2px; }
    body.page-etendards .portfolio-item-cat{ font-size: 12px; color: #be9f57; font-weight: 600; }
    body.page-etendards .portfolio-item-zoom{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); width: 44px; height: 44px; background: #be9f57; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-etendards .portfolio-item:hover .portfolio-item-zoom{ opacity: 1; transform: translate(-50%, -50%) scale(1); }
    body.page-etendards .portfolio-item-zoom svg{ width: 20px; color: #0f0f0f; }
    body.page-etendards .portfolio-carousel{ position: relative; }
    body.page-etendards .portfolio-carousel-track{ display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
    body.page-etendards .portfolio-carousel-track::-webkit-scrollbar{ display: none; }
    body.page-etendards .portfolio-carousel-track .portfolio-item{ flex: 0 0 calc((100% - 36px) / 3); scroll-snap-align: start; }
    body.page-etendards .portfolio-carousel-arrow{ position: absolute; top: 160px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: #be9f57; color: #0f0f0f; box-shadow: 0 10px 30px rgba(0,0,0,0.22); display: flex; align-items: center; justify-content: center; transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-etendards .portfolio-carousel-prev{ left: 12px; }
    body.page-etendards .portfolio-carousel-next{ right: 12px; }
    body.page-etendards .portfolio-carousel-arrow:hover,
    body.page-etendards .portfolio-carousel-arrow:focus-visible{ background: #d4b96e; transform: translateY(-1px); box-shadow: 0 14px 34px rgba(0,0,0,0.28); outline: none; }
    body.page-etendards .portfolio-carousel-arrow svg{ width: 18px; }
    body.page-etendards .economy-carousel .portfolio-item{ background: transparent; }
    body.page-etendards .economy-carousel .portfolio-item-heading{ position: relative; z-index: 2; display: block; margin: 0 0 10px; color: #be9f57; font-size: 18px; font-weight: 800; line-height: 1.25; text-align: left; }
    body.page-etendards .economy-carousel .portfolio-image-wrap{ height: 320px; border: 2px solid #be9f57; box-sizing: border-box; background: #ffffff; }
    body.page-etendards .economy-carousel .portfolio-item img{ width: 100%; height: 100%; object-fit: contain; object-position: center; }
    body.page-etendards .economy-carousel .economy-cover-item img{ object-fit: cover; }
    body.page-etendards .economy-carousel .portfolio-item:hover img{ transform: none; filter: none; }
    body.page-etendards .economy-carousel .portfolio-item-overlay{ background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.32) 100%); }
    body.page-etendards .acc-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
    body.page-etendards .fanions-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    body.page-etendards .etendards-bottom-feature{ display: grid; grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr); gap: 56px; align-items: start; }
    body.page-etendards .etendards-bottom-feature .banner-subsection-header{ display: block; margin-bottom: 0; }
    body.page-etendards .etendards-bottom-feature .banner-subsection-header h2{ margin-bottom: 18px; }
    body.page-etendards .etendards-bottom-grid{ grid-template-columns: 1fr; max-width: none; width: 100%; }
    body.page-etendards .etendards-bottom-grid .portfolio-image-wrap{ height: 420px; border: 2px solid #be9f57; background: #ffffff; }
    body.page-etendards .etendards-bottom-grid .portfolio-item img{ width: 100%; height: 100%; object-fit: contain; object-position: center; }
    body.page-etendards .banner-subsection-header p + p{ margin-top: 14px; }
    body.page-etendards #section-restauration .etendards-work-group .portfolio-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.page-etendards #section-restauration .etendards-work-group .portfolio-image-wrap{ height: 320px; }
    body.page-etendards #section-restauration .etendards-work-group .portfolio-item img{ width: 100%; height: 100%; object-fit: cover; object-position: center; }

    body.page-etendards .section-cta{ background: #0f0f0f; padding: 64px; border-radius: 4px; margin-top: 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
    body.page-etendards .section-cta h3{ font-size: 26px; font-weight: 800; color: #ffffff; letter-spacing: -0.01em; }
    body.page-etendards .section-cta p{ font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 8px; }

    @media (max-width: 1000px) {
      body.page-etendards .banner-types{ grid-template-columns: 1fr 1fr; }
      body.page-etendards .banner-intro{ grid-template-columns: 1fr; gap: 28px; }
      body.page-etendards .banner-intro-copy{ padding-top: 0; }
      body.page-etendards .banner-intro-action{ grid-column: 1; grid-row: auto; justify-self: start; }
      body.page-etendards .banner-subsection-header{ align-items: flex-start; flex-direction: column; }
      body.page-etendards .etendards-bottom-feature{ grid-template-columns: 1fr; gap: 28px; }
      body.page-etendards .etendards-bottom-grid .portfolio-image-wrap{ height: 360px; }
      body.page-etendards .restoration-services{ grid-template-columns: 1fr; }
      body.page-etendards .accessory-section{ grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr); gap: 28px; }
      body.page-etendards .feature-block{ grid-template-columns: 1fr; }
      body.page-etendards .feature-block-img{ height: 280px; }
    }
    @media (max-width: 900px) {
      body.page-etendards .portfolio-grid{ grid-template-columns: repeat(2, 1fr); }
      body.page-etendards .portfolio-grid-three{ grid-template-columns: repeat(2, 1fr); }
      body.page-etendards .portfolio-carousel-track .portfolio-item{ flex-basis: calc((100% - 18px) / 2); }
      body.page-etendards #section-restauration .etendards-work-group .portfolio-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      body.page-etendards .acc-grid{ grid-template-columns: repeat(3, 1fr); }
      body.page-etendards .fanions-grid{ grid-template-columns: repeat(2, 1fr); }
      body.page-etendards .feature-block{ padding: 40px; }
      body.page-etendards .section-cta{ flex-direction: column; padding: 40px; text-align: center; }
    }
    @media (max-width: 640px) {
      body.page-etendards .category-nav{ top: 88px; }
      body.page-etendards .category-nav-inner{ flex-wrap: wrap; align-items: flex-start; padding: 0 18px 10px; gap: 0 4px; }
      body.page-etendards .cat-tab{ padding: 15px 14px; font-size: 16px; }
      body.page-etendards .cat-tab::after{ left: 14px; right: 14px; }
      body.page-etendards .cat-dropdown{ width: 100%; }
      body.page-etendards .cat-dropdown-menu{ position: static; display: none; width: 100%; min-width: 0; margin: 0 0 8px; box-shadow: none; }
      body.page-etendards .cat-dropdown.open .cat-dropdown-menu,
      body.page-etendards .cat-dropdown:not(.suppress-hover):hover .cat-dropdown-menu,
      body.page-etendards .cat-dropdown:not(.suppress-hover):focus-within .cat-dropdown-menu{ display: block; }
      body.page-etendards .cat-dropdown-item{ padding: 13px 14px; font-size: 16px; }
      body.page-etendards .anchor-target{ top: -128px; }
      body.page-etendards .banner-types{ grid-template-columns: 1fr; }
      body.page-etendards .banner-subsection{ padding: 48px 0; }
      body.page-etendards .restoration-services{ gap: 16px; margin-bottom: 48px; }
      body.page-etendards .restoration-service{ padding: 20px; }
      body.page-etendards .accessory-sections{ gap: 40px; }
      body.page-etendards .accessory-section{ grid-template-columns: 1fr; padding-bottom: 40px; }
      body.page-etendards .portfolio-grid, body.page-etendards .portfolio-grid-two, body.page-etendards .portfolio-grid-three, body.page-etendards .fanions-grid, body.page-etendards .acc-grid{ grid-template-columns: 1fr; gap: 14px; }
      body.page-etendards .portfolio-carousel-track{ gap: 14px; }
      body.page-etendards .portfolio-carousel-track .portfolio-item{ flex-basis: 100%; }
      body.page-etendards .portfolio-carousel-arrow{ top: 130px; width: 40px; height: 40px; }
      body.page-etendards .economy-carousel .portfolio-item-heading{ font-size: 18px; }
      body.page-etendards .economy-carousel .portfolio-image-wrap{ height: 260px; }
      body.page-etendards #section-restauration .etendards-work-group .portfolio-grid{ grid-template-columns: 1fr; }
      body.page-etendards #section-restauration .etendards-work-group .portfolio-image-wrap{ height: 260px; }
      body.page-etendards .etendards-bottom-grid .portfolio-image-wrap{ height: 280px; }
      body.page-etendards .etendards-cta-link{ width: 100%; min-height: 56px; white-space: normal; text-align: center; }
    }


/* =====================================================
   PAGE : DAIS
===================================================== */

/* PAGE HERO */
    body.page-dais .page-hero-bg{ background-image: url('../images/dais/ib1_home_dais.webp'); }

    /* INTRO */
    body.page-dais .intro{ padding: 80px 0; background: #ffffff; }
    body.page-dais .intro-inner{ display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
    body.page-dais .intro-text h2{ font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 20px; }
    body.page-dais .intro-text p{ font-size: 16px; color: #666; line-height: 1.75; margin-bottom: 16px; }
    body.page-dais .intro-text strong{ color: #9a7f3f; font-weight: 700; }
    body.page-dais .intro-cta{ margin-top: 24px; }
    body.page-dais .intro-img{ width: 100%; height: auto; max-height: 560px; object-fit: contain; border-radius: 4px; background: #f8f6f1; padding: 24px; }

    /* GALERIE */
    body.page-dais .gallery-section{ padding: 80px 0; background: #f8f6f1; }
    body.page-dais .gallery-header{ margin-bottom: 48px; }
    body.page-dais .gallery-header h2{ font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
    body.page-dais .gallery-header p{ font-size: 16px; color: #666; max-width: 560px; }
    body.page-dais .dais-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
    body.page-dais .dais-item{ position: relative; overflow: hidden; background: #e8e4dc; cursor: pointer; aspect-ratio: 1; }
    body.page-dais .dais-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s ease; }
    body.page-dais .dais-item:hover img{ transform: scale(1.07); filter: brightness(0.65); }
    body.page-dais .dais-item-overlay{ position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-dais .dais-item:hover .dais-item-overlay{ opacity: 1; }
    body.page-dais .dais-item-num{ font-size: 12px; font-weight: 700; color: #be9f57; margin-bottom: 4px; letter-spacing: 0.1em; }
    body.page-dais .dais-item-title{ font-size: 14px; font-weight: 700; color: #ffffff; line-height: 1.3; }
    body.page-dais .dais-item-zoom{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); width: 44px; height: 44px; background: #be9f57; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-dais .dais-item:hover .dais-item-zoom{ opacity: 1; transform: translate(-50%, -50%) scale(1); }
    body.page-dais .dais-item-zoom svg{ width: 20px; color: #0f0f0f; }

    body.page-dais .dais-products{ display: grid; gap: 0; }
    body.page-dais .dais-product{ display: grid; grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 84px); align-items: start; padding: 56px 0; border-top: 1px solid rgba(0,0,0,0.08); }
    body.page-dais .dais-product:first-child{ border-top: 0; padding-top: 8px; }
    body.page-dais .dais-product-content{ max-width: 560px; }
    body.page-dais .dais-product-num{ display: inline-flex; margin-bottom: 14px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #be9f57; }
    body.page-dais .dais-product-content h3{ margin: 0 0 18px; font-size: 24px; line-height: 1.2; font-weight: 800; color: #be9f57; letter-spacing: 0; }
    body.page-dais .dais-product-content p{ margin: 0 0 22px; font-size: 16px; line-height: 1.75; color: #666; }
    body.page-dais .dais-product-specs{ display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
    body.page-dais .dais-product-specs li{ display: grid; gap: 3px; padding-left: 18px; border-left: 2px solid rgba(190,159,87,0.35); }
    body.page-dais .dais-product-specs strong{ font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #9a7f3f; }
    body.page-dais .dais-product-specs span{ font-size: 15px; line-height: 1.65; color: #555; }
    body.page-dais .dais-product-media{ position: relative; display: block; width: 100%; padding: 0; border: 0; border-radius: 4px; overflow: hidden; background: #ffffff; box-shadow: 0 18px 46px rgba(0,0,0,0.08); cursor: zoom-in; }
    body.page-dais .dais-product-media img{ display: block; width: 100%; height: auto; max-height: 640px; object-fit: contain; transition: filter 0.35s ease; }
    body.page-dais .dais-product-media:hover img,
    body.page-dais .dais-product-media:focus-visible img{ filter: brightness(0.78); }
    body.page-dais .dais-product-media:focus-visible{ outline: 2px solid #be9f57; outline-offset: 4px; }
    body.page-dais .dais-product-media:hover .dais-item-zoom,
    body.page-dais .dais-product-media:focus-visible .dais-item-zoom{ opacity: 1; transform: translate(-50%, -50%) scale(1); }

    /* CTA */
    body.page-dais .cta-block{ background: #0f0f0f; padding: 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
    body.page-dais .cta-block h2{ font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: #ffffff; letter-spacing: -0.01em; }
    body.page-dais .cta-block p{ font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 10px; max-width: 480px; }

    @media (max-width: 900px) {
      body.page-dais .intro-inner{ grid-template-columns: 1fr; }
      body.page-dais .intro-img{ max-height: 420px; padding: 18px; }
      body.page-dais .dais-grid{ grid-template-columns: repeat(2, 1fr); }
      body.page-dais .dais-product{ grid-template-columns: 1fr; gap: 28px; padding: 42px 0; }
      body.page-dais .dais-product-content{ max-width: none; }
      body.page-dais .cta-block{ flex-direction: column; padding: 48px 32px; text-align: center; }
    }

/* =====================================================
   PAGE : CONFIDENTIALITE
===================================================== */
body.page-confidentialite .page-hero-bg{ background-image: url('../images/home/home_3.webp'); }
body.page-confidentialite .privacy-section{ padding: 90px 0; background: #ffffff; }
body.page-confidentialite .privacy-grid{
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: start;
}
body.page-confidentialite .privacy-aside{
  position: sticky;
  top: 140px;
  padding: 34px;
  border-left: 3px solid #be9f57;
  background: #f8f6f1;
}
body.page-confidentialite .privacy-aside h2{
  margin: 12px 0 16px;
  font-size: 30px;
  color: #be9f57;
  line-height: 1.15;
}
body.page-confidentialite .privacy-aside p{
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.65;
  color: #000;
}
body.page-confidentialite .privacy-content{
  display: grid;
  gap: 34px;
}
body.page-confidentialite .privacy-content article{
  padding-bottom: 34px;
  border-bottom: 1px solid #e8e4dc;
}
body.page-confidentialite .privacy-content article:last-child{ border-bottom: 0; }
body.page-confidentialite .privacy-content h2{
  margin: 0 0 14px;
  font-size: 30px;
  color: #be9f57;
  line-height: 1.15;
}
body.page-confidentialite .privacy-content p{
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.75;
  color: #000;
}
body.page-confidentialite .privacy-content a{
  color: #be9f57;
  font-weight: 700;
}
@media (max-width: 900px) {
  body.page-confidentialite .privacy-grid{ grid-template-columns: 1fr; }
  body.page-confidentialite .privacy-aside{ position: static; }
}
    @media (max-width: 640px) {
      body.page-dais .dais-grid{ grid-template-columns: repeat(2, 1fr); }
      body.page-dais .dais-product{ padding: 34px 0; }
      body.page-dais .dais-product-content h3{ font-size: 22px; }
      body.page-dais .dais-product-media img{ max-height: none; }
    }


/* =====================================================
   PAGE : CATALOGUE
===================================================== */
body.page-catalogue .page-hero-bg{ background-image: url('../images/etendards/ib1_catalogue.webp'); }
body.page-catalogue .catalogue-page{ background: #ffffff; }
body.page-catalogue .catalogue-wide{ max-width: 1800px; }
body.page-catalogue .catalogue-intro-section{ padding: 96px 0 24px; }
body.page-catalogue .catalogue-intro{
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 54px;
  border-bottom: 1px solid #e8e4dc;
}
body.page-catalogue .catalogue-intro-copy,
body.page-catalogue .catalogue-intro-copy p{
  font-size: 20px;
  line-height: 1.75;
  color: #000000;
}
body.page-catalogue .catalogue-intro-copy p + p{ margin-top: 18px; }
body.page-catalogue .catalogue-list-section{ padding: 72px 0 96px; }
body.page-catalogue .catalogue-section-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 42px;
}
body.page-catalogue .catalogue-section-header h2{
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f0f0f;
}
body.page-catalogue .catalogue-section-header p{
  max-width: 800px;
  font-size: 20px;
  line-height: 1.65;
  color: #000000;
}
body.page-catalogue .catalogue-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
body.page-catalogue .catalogue-card{
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #0f0f0f;
  border: 2px solid #ffffff;
}
body.page-catalogue .catalogue-card-media{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  padding: 42px;
  background: #ffffff;
  overflow: hidden;
}
body.page-catalogue .catalogue-card-media::after{
  content: '';
  position: absolute;
  inset: 18px;
  border: 2px solid #be9f57;
  pointer-events: none;
}
body.page-catalogue .catalogue-card-media img{
  width: min(100%, 520px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.24);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.page-catalogue .catalogue-card-media:hover img,
body.page-catalogue .catalogue-card-media:focus-visible img{ transform: translateY(-4px); }
body.page-catalogue .catalogue-card-media span{
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  background: #be9f57;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.page-catalogue .catalogue-card-content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 0 0;
}
body.page-catalogue .catalogue-card-kicker{
  margin-bottom: 14px;
  color: #be9f57;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.page-catalogue .catalogue-card h3{
  margin: 0 0 18px;
  color: #be9f57;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}
body.page-catalogue .catalogue-card p{
  max-width: 700px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 1.7;
}
body.page-catalogue .catalogue-card-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
body.page-catalogue .catalogue-card-meta span{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(190,159,87,0.48);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.page-catalogue .catalogue-card-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 0;
}
body.page-catalogue .catalogue-card-actions .btn-secondary{
  min-height: 54px;
  padding: 17px 30px;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
body.page-catalogue .catalogue-download-link{
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #be9f57;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
body.page-catalogue .catalogue-download-link:hover,
body.page-catalogue .catalogue-download-link:focus-visible{ color: #0f0f0f; outline: none; }
body.page-catalogue .catalogue-advice-section{ padding: 0 0 110px; }
body.page-catalogue .catalogue-advice{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 56px 64px;
  background: #f8f6f1;
  border-left: 4px solid #be9f57;
}
body.page-catalogue .catalogue-advice h2{
  margin: 0 0 14px;
  color: #be9f57;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}
body.page-catalogue .catalogue-advice p{
  max-width: 780px;
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 1.7;
}
@media (max-width: 1180px) {
  body.page-catalogue .catalogue-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  body.page-catalogue .catalogue-intro{ grid-template-columns: 1fr; }
  body.page-catalogue .catalogue-section-header,
  body.page-catalogue .catalogue-advice{ align-items: flex-start; flex-direction: column; }
  body.page-catalogue .catalogue-card-content{ padding-top: 20px; }
  body.page-catalogue .catalogue-card-media{ min-height: 360px; }
}
@media (max-width: 640px) {
  body.page-catalogue .catalogue-intro-section{ padding-top: 70px; }
  body.page-catalogue .catalogue-list-section{ padding: 54px 0 72px; }
  body.page-catalogue .catalogue-intro{ gap: 28px; padding-bottom: 40px; }
  body.page-catalogue .catalogue-intro-copy,
  body.page-catalogue .catalogue-intro-copy p,
  body.page-catalogue .catalogue-section-header p,
  body.page-catalogue .catalogue-card p,
  body.page-catalogue .catalogue-advice p{ font-size: 18px; }
  body.page-catalogue .catalogue-card-media{ min-height: 320px; padding: 34px; }
  body.page-catalogue .catalogue-card-media::after{ inset: 14px; }
  body.page-catalogue .catalogue-card-media span{ left: 26px; bottom: 26px; }
  body.page-catalogue .catalogue-card-actions{ align-items: stretch; flex-direction: column; }
  body.page-catalogue .catalogue-card-actions .btn-secondary,
  body.page-catalogue .catalogue-download-link{ width: 100%; justify-content: center; text-align: center; }
  body.page-catalogue .catalogue-advice{ padding: 36px 28px; }
}


/* =====================================================
   SECTION ALLEMANDE : SEIDENFAHNEN
===================================================== */
body.page-de .fullscreen-menu::after{ display: none; }
body.page-de .fullscreen-menu-watermark{
  position: absolute;
  right: -30px;
  bottom: 50px;
  width: min(1000px, 58vw);
  aspect-ratio: 417 / 163;
  object-fit: contain;
  filter: grayscale(1) brightness(0.22);
  opacity: 0.30;
  pointer-events: none;
}
body.page-de .de-page{ background: #ffffff; }
body.page-de .de-wide{ max-width: 1800px; }
body.page-de .de-intro-section{ padding: 96px 0 24px; }
body.page-de .de-intro{
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 54px;
  border-bottom: 1px solid #e8e4dc;
}
body.page-de .de-intro-copy,
body.page-de .de-intro-copy p,
body.page-de .de-section-head p,
body.page-de .de-service-card p,
body.page-de .de-accessory-item p,
body.page-de .de-contact-card p{
  font-size: 20px;
  line-height: 1.75;
  color: #000000;
}
body.page-de .de-intro-copy p + p{ margin-top: 18px; }
body.page-de .de-catalogue-link{ margin-top: 24px; text-transform: uppercase; }
body.page-de .de-content-section{ padding: 72px 0 110px; }
body.page-de .de-card-section{ padding: 72px 0 110px; }
body.page-de .de-card-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
body.page-de .de-feature-card{
  position: relative;
  display: block;
  min-height: 380px;
  overflow: hidden;
  border: 2px solid #be9f57;
  background: #0f0f0f;
}
body.page-de .de-feature-card img{
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.35s ease;
}
body.page-de .de-feature-card::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.05));
}
body.page-de .de-feature-card span{
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}
body.page-de .de-feature-card:hover img,
body.page-de .de-feature-card:focus-visible img{ transform: scale(1.05); filter: brightness(0.72); }
body.page-de .de-section-block{
  padding: 72px 0;
  border-bottom: 1px solid #e8e4dc;
}
body.page-de .de-section-block:first-child{ padding-top: 0; }
body.page-de .de-section-block:last-child{ border-bottom: 0; }
body.page-de .de-section-head{
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  margin-bottom: 34px;
}
body.page-de .de-section-head h2,
body.page-de .de-service-card h2,
body.page-de .de-accessory-item h2,
body.page-de .de-contact-card h2{
  margin: 0 0 16px;
  color: #be9f57;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
}
body.page-de .de-section-head p{ max-width: 980px; }
body.page-de .de-gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
body.page-de .de-gallery-two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.page-de .portfolio-item{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid #be9f57;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
}
body.page-de .portfolio-item img{
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #ffffff;
  transition: transform 0.35s ease, filter 0.35s ease;
}
body.page-de .portfolio-item:hover img,
body.page-de .portfolio-item:focus-visible img{ transform: scale(1.03); filter: brightness(0.82); }
body.page-de .de-service-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 72px;
}
body.page-de .de-service-card{
  padding: 34px;
  background: #f8f6f1;
  border-left: 4px solid #be9f57;
}
body.page-de .de-accessory-list{
  display: grid;
  gap: 56px;
}
body.page-de .de-accessory-item{
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 46px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid #e8e4dc;
}
body.page-de .de-accessory-item:last-child{ border-bottom: 0; padding-bottom: 0; }
body.page-de .de-inline-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
body.page-de .de-contact-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
body.page-de .de-contact-card{
  padding: 38px;
  background: #f8f6f1;
  border-left: 4px solid #be9f57;
}
body.page-de .de-contact-card a{ color: #be9f57; font-weight: 800; }
body.page-de-vereinsfahnen.page-etendards #banniere-simple-face .portfolio-item,
body.page-de-vereinsfahnen.page-etendards #banniere-double-face .portfolio-item{
  border: 0;
  background: #e8e4dc;
  overflow: hidden;
}
body.page-de-vereinsfahnen.page-etendards #banniere-simple-face .portfolio-image-wrap,
body.page-de-vereinsfahnen.page-etendards #banniere-double-face .portfolio-image-wrap{
  border: 0;
  background: #e8e4dc;
}
body.page-de-vereinsfahnen.page-etendards #banniere-simple-face .portfolio-item img,
body.page-de-vereinsfahnen.page-etendards #banniere-double-face .portfolio-item img{
  height: auto;
  object-fit: contain;
  background: transparent;
  transition: transform 0.6s ease, filter 0.4s ease;
}
body.page-de-vereinsfahnen.page-etendards #banniere-simple-face .portfolio-item:hover img,
body.page-de-vereinsfahnen.page-etendards #banniere-simple-face .portfolio-item:focus-visible img,
body.page-de-vereinsfahnen.page-etendards #banniere-double-face .portfolio-item:hover img,
body.page-de-vereinsfahnen.page-etendards #banniere-double-face .portfolio-item:focus-visible img{
  transform: scale(1.07);
  filter: brightness(0.65);
}
body.page-de-vereinsfahnen.page-etendards #banniere-procession .procession-fill-group .portfolio-image-wrap{
  height: 360px;
}
body.page-de-vereinsfahnen.page-etendards #banniere-procession .procession-fill-group .portfolio-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-de-vereinsfahnen.page-etendards #banniere-tir .tir-fill-group .portfolio-image-wrap{
  height: 360px;
}
body.page-de-vereinsfahnen.page-etendards #banniere-tir .tir-fill-group .portfolio-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-de-vereinsfahnen.page-etendards .accessory-section .portfolio-item{
  border: 0;
  background: #e8e4dc;
  overflow: hidden;
  width: 100%;
}
body.page-de-vereinsfahnen.page-etendards .accessory-section .portfolio-grid{
  grid-template-columns: 1fr;
  width: 100%;
}
body.page-de-vereinsfahnen.page-etendards .accessory-section .portfolio-image-wrap{
  position: relative;
  display: block;
  height: auto;
  border: 0;
  background: #e8e4dc;
  overflow: hidden;
}
body.page-de-vereinsfahnen.page-etendards .accessory-section .portfolio-item img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
body.page-de-vereinsfahnen.page-etendards .accessory-section .portfolio-item:hover img,
body.page-de-vereinsfahnen.page-etendards .accessory-section .portfolio-item:focus-visible img{
  transform: none;
  filter: none;
}
body.page-de-wimpel.page-etendards .accessory-sections{
  display: grid;
  gap: 56px;
}
body.page-de-wimpel.page-etendards .accessory-section{
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid #e8e4dc;
}
body.page-de-wimpel.page-etendards .accessory-section:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}
body.page-de-wimpel.page-etendards .accessory-section .portfolio-grid{
  grid-template-columns: 1fr;
  width: 100%;
}
body.page-de-wimpel.page-etendards .accessory-section .portfolio-item{
  border: 0;
  background: transparent;
  overflow: hidden;
  width: 100%;
}
body.page-de-wimpel.page-etendards .accessory-section .portfolio-image-wrap{
  display: block;
  border: 2px solid #be9f57;
  background: #ffffff;
  overflow: hidden;
}
body.page-de-wimpel.page-etendards .accessory-section .portfolio-item img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
body.page-de-wimpel.page-etendards .accessory-section .portfolio-item:hover img,
body.page-de-wimpel.page-etendards .accessory-section .portfolio-item:focus-visible img{
  transform: none;
  filter: none;
}
@media (max-width: 1180px) {
  body.page-de .de-card-grid,
  body.page-de .de-service-grid,
  body.page-de .de-contact-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.page-de .de-section-head,
  body.page-de .de-accessory-item{ grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.page-de .de-intro,
  body.page-de .de-card-grid,
  body.page-de .de-gallery-grid,
  body.page-de .de-gallery-two,
  body.page-de .de-service-grid,
  body.page-de .de-contact-grid{ grid-template-columns: 1fr; }
  body.page-de .de-intro-section{ padding: 72px 0 12px; }
  body.page-de .de-content-section,
  body.page-de .de-card-section{ padding: 54px 0 76px; }
  body.page-de .portfolio-item img{ height: 300px; }
  body.page-de-vereinsfahnen.page-etendards #banniere-tir .tir-fill-group .portfolio-image-wrap{ height: 300px; }
  body.page-de-vereinsfahnen.page-etendards #banniere-procession .procession-fill-group .portfolio-image-wrap{ height: 300px; }
  body.page-de .de-intro-copy,
  body.page-de .de-intro-copy p,
  body.page-de .de-section-head p,
  body.page-de .de-service-card p,
  body.page-de .de-accessory-item p,
  body.page-de .de-contact-card p{ font-size: 18px; }
  body.page-de-wimpel.page-etendards .accessory-section{ grid-template-columns: 1fr; padding-bottom: 40px; }
}

body.page-de-zubehor.page-etendards .accessory-section .portfolio-item{
  border: 0;
  background: #e8e4dc;
}
body.page-de-zubehor.page-etendards .accessory-section .portfolio-grid{
  grid-template-columns: 1fr;
}
body.page-de-zubehor.page-etendards .accessory-section .portfolio-grid-two{
  grid-template-columns: 1fr;
}
body.page-de-zubehor.page-etendards .accessory-section .portfolio-item img{
  height: auto;
  object-fit: contain;
  background: transparent;
}
body.page-de-zubehor.page-etendards .accessory-section .portfolio-item:hover img,
body.page-de-zubehor.page-etendards .accessory-section .portfolio-item:focus-visible img{
  transform: none;
  filter: none;
}
body.page-de.page-etendards .etendards-detail-page .portfolio-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
body.page-de.page-etendards .etendards-detail-page .portfolio-grid-three{
  grid-template-columns: repeat(3, 1fr);
}
body.page-de.page-etendards .etendards-detail-page .portfolio-item{
  border: 0;
  background: #e8e4dc;
}
body.page-de.page-etendards .etendards-detail-page .portfolio-item img{
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
body.page-de.page-etendards .etendards-detail-page .portfolio-item:hover img,
body.page-de.page-etendards .etendards-detail-page .portfolio-item:focus-visible img{
  transform: scale(1.07);
  filter: brightness(0.65);
}
body.page-de.page-etendards .etendards-detail-page .work-group-head h3{
  font-size: 24px;
  color: #be9f57;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}
body.page-de.page-etendards .economy-carousel .portfolio-item{
  border: 0;
  background: transparent;
  overflow: visible;
}
body.page-de.page-etendards .economy-carousel .portfolio-item-heading{
  display: block;
  margin: 0 0 10px;
  color: #be9f57;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}
body.page-de.page-etendards .economy-carousel .portfolio-image-wrap{
  height: 320px;
  border: 2px solid #be9f57;
  box-sizing: border-box;
  background: #ffffff;
}
body.page-de.page-etendards .economy-carousel .portfolio-item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
body.page-de.page-etendards .economy-carousel .economy-cover-item img{
  object-fit: cover;
}
body.page-de.page-etendards .economy-carousel .portfolio-item:hover img,
body.page-de.page-etendards .economy-carousel .portfolio-item:focus-visible img{
  transform: none;
  filter: none;
}
@media (max-width: 1024px) {
  body.page-de.page-etendards .etendards-detail-page .portfolio-grid,
  body.page-de.page-etendards .etendards-detail-page .portfolio-grid-three{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  body.page-de.page-etendards .etendards-detail-page .portfolio-grid,
  body.page-de.page-etendards .etendards-detail-page .portfolio-grid-three{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  body.page-de.page-etendards .economy-carousel .portfolio-image-wrap{
    height: 260px;
  }
}


/* =====================================================
   PAGE : SERVICES
===================================================== */

/* PAGE HERO — image spécifique */
    body.page-services .page-hero-bg{ background-image: url('../images/services/apres-vente.webp'); }

    /* ACCORDION SERVICES */
    body.page-services .services-main{ padding: 80px 0; background: #ffffff; }
    body.page-services .services-intro{ max-width: 680px; margin-bottom: 64px; }
    body.page-services .services-intro h2{ font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
    body.page-services .services-intro p{ font-size: 16px; color: #666; line-height: 1.75; }
    body.page-services .services-accordion{ display: grid; gap: 2px; }
    body.page-services .service-item{ background: #f8f6f1; overflow: hidden; }
    body.page-services .service-header{ padding: 32px 40px; display: flex; align-items: center; gap: 24px; cursor: pointer; transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-services .service-header:hover{ background: #e8e4dc; }
    body.page-services .service-header.open{ background: #0f0f0f; }
    body.page-services .service-header.open .service-header-num{ color: rgba(190,159,87,0.3); }
    body.page-services .service-header.open .service-header-title{ color: #ffffff; }
    body.page-services .service-header.open .service-header-arrow{ border-color: rgba(255,255,255,0.3); transform: rotate(180deg); }
    body.page-services .service-header.open .service-header-arrow svg{ color: #ffffff; }
    body.page-services .service-header-num{ font-size: 48px; font-weight: 900; color: rgba(190,159,87,0.15); line-height: 1; min-width: 60px; transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-services .service-header-icon{ width: 48px; height: 48px; background: #be9f57; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    body.page-services .service-header-icon svg{ width: 22px; color: #0f0f0f; }
    body.page-services .service-header-title{ font-size: 20px; font-weight: 700; letter-spacing: -0.01em; flex: 1; transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-services .service-header-arrow{ width: 36px; height: 36px; border: 1px solid #e8e4dc; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-services .service-header-arrow svg{ width: 16px; color: #888; }
    body.page-services .service-body{ display: grid; grid-template-rows: 0fr; max-height: none; opacity: 0; overflow: hidden; transform: translateY(-6px); transition: grid-template-rows 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
    body.page-services .service-body.open{ grid-template-rows: 1fr; max-height: none; opacity: 1; transform: translateY(0); }
    body.page-services .service-body-inner{ min-height: 0; overflow: hidden; padding: 0 40px; display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; transition: padding 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
    body.page-services .service-body.open .service-body-inner{ padding: 40px 40px 48px 40px; }
    body.page-services .service-body-text p{ font-size: 15px; color: #666; line-height: 1.75; margin-bottom: 12px; }
    body.page-services .service-body-text ul{ list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
    body.page-services .service-body-text ul li{ display: flex; align-items: center; gap: 10px; font-size: 14px; color: #555; }
    body.page-services .service-body-text ul li::before{ content: ''; width: 6px; height: 6px; background: #be9f57; border-radius: 50%; flex-shrink: 0; }
    body.page-services .service-body-img{ width: 100%; height: 240px; object-fit: cover; border-radius: 4px; }

    /* PROCESS */
    body.page-services .process-section{ padding: 80px 0; background: #0f0f0f; }
    body.page-services .process-header{ text-align: center; margin-bottom: 64px; }
    body.page-services .process-tag-centered{ justify-content: center; }
    body.page-services .process-header h2{ font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; color: #ffffff; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
    body.page-services .process-header p{ font-size: 16px; color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto; }
    body.page-services .process-timeline{ display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
    body.page-services .process-timeline::before{ content: ''; position: absolute; top: 48px; left: 10%; right: 10%; height: 1px; background: rgba(190,159,87,0.3); }
    body.page-services .process-step{ text-align: center; padding: 0 24px; position: relative; }
    body.page-services .process-step-circle{ width: 96px; height: 96px; background: #1a1a1a; border: 1px solid rgba(190,159,87,0.3); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 28px; transition: border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; z-index: 1; }
    body.page-services .process-step:hover .process-step-circle{ border-color: #be9f57; background: rgba(190,159,87,0.1); }
    body.page-services .process-step-circle svg{ width: 28px; color: #be9f57; }
    body.page-services .process-step h3{ font-size: 16px; font-weight: 700; color: #ffffff; margin-bottom: 10px; }
    body.page-services .process-step p{ font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

    /* CTA */
    body.page-services .cta-section{ padding: 80px 0; background: #be9f57; }
    body.page-services .cta-inner{ display: flex; align-items: center; justify-content: space-between; gap: 40px; }
    body.page-services .cta-inner h2{ font-size: clamp(26px, 3.5vw, 44px); color: rgba(255,255,255,1); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
    body.page-services .cta-inner p{ font-size: 16px; color: rgba(255,255,255,1); margin-top: 12px; }

    @media (max-width: 900px) {
      body.page-services .process-timeline{ grid-template-columns: repeat(2, 1fr); }
      body.page-services .process-timeline::before{ display: none; }
      body.page-services .cta-inner{ flex-direction: column; text-align: center; }
      body.page-services .service-body.open{ max-height: none; }
      body.page-services .service-body-inner{ padding: 0 24px; grid-template-columns: 1fr; gap: 24px; }
      body.page-services .service-body.open .service-body-inner{ padding: 24px; }
      body.page-services .service-body-inner ul{ grid-template-columns: 1fr; }
      body.page-services .service-body-img{ height: 200px; order: -1; }
    }
    @media (max-width: 640px) {
      body.page-services .process-timeline{ grid-template-columns: 1fr; }
      body.page-services .service-header{ padding: 24px; }
      body.page-services .service-header-num{ display: none; }
      body.page-services .service-body.open{ max-height: none; }
      body.page-services .service-body-inner{ padding: 0 20px; }
      body.page-services .service-body.open .service-body-inner{ padding: 20px; }
      body.page-services .service-body-text ul{ margin-top: 14px; gap: 10px; }
      body.page-services .service-body-text ul li{ align-items: flex-start; line-height: 1.45; }
    }


/* =====================================================
   PAGE : CONTACT
===================================================== */

/* PAGE HERO — image spécifique */
    body.page-contact .page-hero-bg{ background-image: url('../images/contact/ib_contact.webp'); }

    /* CONTACT SECTION */
    body.page-contact .contact-section{ padding: 80px 0; background: #ffffff; }
    body.page-contact .contact-grid{ display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
    body.page-contact .contact-info-side h2{ font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 12px; }
    body.page-contact .contact-info-side > p{ font-size: 16px; color: #666; line-height: 1.7; margin-bottom: 40px; }
    body.page-contact .contact-detail{ display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid #e8e4dc; }
    body.page-contact .contact-detail:last-of-type{ border-bottom: none; }
    body.page-contact .contact-detail-icon{ width: 44px; height: 44px; background: #f8f6f1; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    body.page-contact .contact-detail-icon svg{ width: 20px; color: #be9f57; }
    body.page-contact .contact-detail-content h4{ font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #be9f57; margin-bottom: 6px; }
    body.page-contact .contact-detail-content p{ font-size: 15px; color: #555; line-height: 1.65; }
    body.page-contact .contact-detail-content a{ color: #0f0f0f; font-weight: 600; transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-contact .contact-detail-content a:hover{ color: #be9f57; }
    body.page-contact .contact-secondary-line{ margin-top: 4px; }

    /* FORMULAIRE */
    body.page-contact .contact-form-side h3{ font-size: 22px; font-weight: 700; margin-bottom: 8px; }
    body.page-contact .contact-form-side > p{ font-size: 14px; color: #888; margin-bottom: 32px; }
    body.page-contact .form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    body.page-contact .form-full{ grid-column: span 2; }
    body.page-contact .form-group{ display: flex; flex-direction: column; gap: 6px; }
    body.page-contact .form-group label{ font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #888; }
    body.page-contact .form-group input, body.page-contact .form-group select, body.page-contact .form-group textarea{
      width: 100%; padding: 14px 16px;
      border: 1px solid #e8e4dc;
      background: #f8f6f1; border-radius: 4px;
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 15px; color: #0f0f0f;
      transition: border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      outline: none;
    }
    body.page-contact .form-group input:focus, body.page-contact .form-group select:focus, body.page-contact .form-group textarea:focus{
      border-color: #be9f57; background: #ffffff;
    }
    body.page-contact .form-group textarea{ resize: vertical; min-height: 140px; }
    body.page-contact .form-note{ font-size: 12px; color: #aaa; margin-top: 12px; }
    body.page-contact .form-honeypot{
      position: absolute;
      left: -10000px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    body.page-contact .form-feedback{
      padding: 14px 16px;
      border-radius: 4px;
      margin: 0 0 24px;
      font-size: 14px;
      line-height: 1.5;
    }
    body.page-contact .form-feedback-success{
      background: rgba(45, 138, 78, 0.12);
      color: #205f38;
      border: 1px solid rgba(45, 138, 78, 0.25);
    }
    body.page-contact .form-feedback-error{
      background: rgba(150, 42, 42, 0.1);
      color: #7a2424;
      border: 1px solid rgba(150, 42, 42, 0.22);
    }

    /* CARTE & INFO STRIP */
    body.page-contact .map-section{ height: 440px; background: #1a1a1a; }
    body.page-contact .map-section iframe{ width: 100%; height: 100%; border: none; display: block; }
    body.page-contact .info-strip{ background: #0f0f0f; padding: 56px 0; }
    body.page-contact .info-strip-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
    body.page-contact .info-strip-item{ background: #1a1a1a; padding: 32px 28px; transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-contact .info-strip-item:hover{ background: #222; }
    body.page-contact .info-strip-icon{ width: 40px; height: 40px; background: rgba(190,159,87,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    body.page-contact .info-strip-icon svg{ width: 18px; color: #be9f57; }
    body.page-contact .info-strip-item h4{ font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #be9f57; margin-bottom: 8px; }
    body.page-contact .info-strip-item p{ font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
    body.page-contact .info-strip-item a{ color: rgba(255,255,255,0.75); font-weight: 600; transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-contact .info-strip-item a:hover{ color: #be9f57; }

    @media (max-width: 1000px) {
      body.page-contact .contact-grid{ grid-template-columns: 1fr; gap: 48px; }
      body.page-contact .info-strip-grid{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      body.page-contact .form-grid{ grid-template-columns: 1fr; }
      body.page-contact .form-full{ grid-column: span 1; }
      body.page-contact .info-strip-grid{ grid-template-columns: 1fr 1fr; }
    }


/* =====================================================
   PAGE : REALISATIONS
===================================================== */

/* PAGE HERO */
    body.page-realisations .page-hero-bg{ background-image: url('../images/home/home_3.webp'); }

    /* FILTER BAR */
    body.page-realisations .filter-bar{ background: #ffffff; position: sticky; top: 65px; z-index: 100; border-bottom: 1px solid #e8e4dc; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
    body.page-realisations .filter-bar-inner{ max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    body.page-realisations .filter-tabs{ display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
    body.page-realisations .filter-tabs::-webkit-scrollbar{ display: none; }
    body.page-realisations .filter-btn{ flex-shrink: 0; padding: 18px 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: #888; cursor: pointer; position: relative; transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); white-space: nowrap; border: none; background: none; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
    body.page-realisations .filter-btn::after{ content: ''; position: absolute; bottom: 0; left: 20px; right: 20px; height: 2px; background: #be9f57; transform: scaleX(0); transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-realisations .filter-btn:hover{ color: #0f0f0f; }
    body.page-realisations .filter-btn.active{ color: #0f0f0f; }
    body.page-realisations .filter-btn.active::after{ transform: scaleX(1); }
    body.page-realisations .filter-count{ font-size: 12px; font-weight: 500; color: #888; padding: 16px 0; }

    /* REALISATIONS */
    body.page-realisations .realizations-section{ padding: 80px 0; background: #ffffff; }
    body.page-realisations .portfolio-block.hidden, body.page-realisations .flat-grid.hidden, body.page-realisations .portfolio-item.hidden{ display: none; }
    body.page-realisations .uniforme-source{ margin-bottom: 70px; }
    body.page-realisations .source-intro{ display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 64px; align-items: start; margin-bottom: 70px; }
    body.page-realisations .source-note{ border-left: 3px solid #be9f57; padding: 28px 32px; background: #f8f6f1; }
    body.page-realisations .source-note p{ font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 12px; }
    body.page-realisations .source-note p:last-child{ margin-bottom: 0; }
    body.page-realisations .source-rubrique{ padding: 64px 0; border-top: 1px solid #e8e4dc; }
    body.page-realisations .source-rubrique-header{ display: flex; justify-content: space-between; gap: 48px; align-items: flex-end; margin-bottom: 34px; }
    body.page-realisations .source-rubrique-header p{ max-width: 520px; font-size: 15px; color: #666; line-height: 1.7; }
    body.page-realisations .company-groups{ display: grid; gap: 40px; }
    body.page-realisations .company-groups.is-compact{ grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 3px; }
    body.page-realisations .company-group{ min-width: 0; }
    body.page-realisations .company-title{ font-size: clamp(18px, 2vw, 26px); font-weight: 800; color: #0f0f0f; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 18px; }
    body.page-realisations .company-groups.is-compact .company-title{ font-size: 15px; min-height: 42px; padding: 0 10px; margin-bottom: 10px; }
    body.page-realisations .company-group.wide{ grid-column: span 2; }
    body.page-realisations .company-grid{ display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 3px; }
    body.page-realisations .company-groups.is-compact .company-grid{ grid-template-columns: 1fr; }
    body.page-realisations .company-groups.is-compact .company-group.wide .company-grid{ grid-template-columns: repeat(3, 1fr); }
    body.page-realisations .portfolio-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }

    body.page-realisations .portfolio-item{ position: relative; overflow: hidden; background: #e8e4dc; cursor: pointer; aspect-ratio: 1; transition: opacity 0.3s ease, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-realisations .portfolio-item:focus-visible{ outline: 3px solid #be9f57; outline-offset: 3px; }
    body.page-realisations .portfolio-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s ease; }
    body.page-realisations .portfolio-item:hover{ transform: translateY(-2px); }
    body.page-realisations .portfolio-item:hover img{ transform: scale(1.07); filter: brightness(0.6); }
    body.page-realisations .portfolio-item-overlay{ position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-realisations .portfolio-item:hover .portfolio-item-overlay, body.page-realisations .portfolio-item:focus-visible .portfolio-item-overlay{ opacity: 1; }
    body.page-realisations .portfolio-item-cat{ font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #be9f57; margin-bottom: 5px; }
    body.page-realisations .portfolio-item-title{ font-size: 14px; font-weight: 700; color: #ffffff; line-height: 1.3; }
    body.page-realisations .portfolio-item-zoom{ position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    body.page-realisations .portfolio-item:hover .portfolio-item-zoom, body.page-realisations .portfolio-item:focus-visible .portfolio-item-zoom{ opacity: 1; }
    body.page-realisations .portfolio-item-zoom:hover{ background: #be9f57; border-color: #be9f57; }
    body.page-realisations .portfolio-item-zoom svg{ width: 16px; color: #ffffff; }

    /* CTA */
    body.page-realisations .cta-section{ padding: 80px 0; background: #0f0f0f; }
    body.page-realisations .cta-inner{ display: flex; align-items: center; justify-content: space-between; gap: 40px; }
    body.page-realisations .cta-inner h2{ font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: #ffffff; letter-spacing: -0.02em; line-height: 1.1; }
    body.page-realisations .cta-inner p{ font-size: 16px; color: rgba(255,255,255,0.5); margin-top: 12px; max-width: 480px; }

    @media (max-width: 1100px) {
      body.page-realisations .company-groups.is-compact{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
      body.page-realisations .company-groups.is-compact .company-group.wide{ grid-column: span 3; }
    }
    @media (max-width: 900px) {
      body.page-realisations .source-intro, body.page-realisations .source-rubrique-header{ grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; gap: 28px; }
      body.page-realisations .company-groups.is-compact{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      body.page-realisations .company-groups.is-compact .company-group.wide{ grid-column: span 2; }
      body.page-realisations .portfolio-grid{ grid-template-columns: repeat(3, 1fr); }
      body.page-realisations .cta-inner{ flex-direction: column; text-align: center; }
      body.page-realisations .filter-bar-inner{ padding: 0 16px; }
    }
    @media (max-width: 640px) {
      body.page-realisations .realizations-section{ padding: 64px 0; }
      body.page-realisations .source-note{ padding: 24px; }
      body.page-realisations .portfolio-grid, body.page-realisations .company-grid, body.page-realisations .company-groups.is-compact, body.page-realisations .company-groups.is-compact .company-group.wide .company-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      body.page-realisations .company-groups.is-compact .company-group.wide{ grid-column: span 2; }
      body.page-realisations .company-title{ font-size: 17px; min-height: auto; }
      body.page-realisations .filter-count{ display: none; }
      body.page-realisations .portfolio-item-overlay{ opacity: 1; padding: 14px; }
    }

/* =====================================================
   HIERARCHIE DES TITRES
===================================================== */
.section-title,
body.page-uniformes .cat-section-header h2,
body.page-etendards .cat-section-header h2,
body.page-dais .intro-text h2,
body.page-dais .gallery-header h2,
body.page-services .services-intro h2,
body.page-services .process-header h2,
body.page-contact .contact-info-side h2 {
  font-size: 46px;
}

body.page-uniformes .uniform-family-header h3,
body.page-etendards .banner-subsection-header h2,
body.page-etendards .restoration-service h3,
body.page-etendards .accessory-section-copy h3,
body.page-contact .contact-form-side h3 {
  font-size: 40px;
  color: #be9f57;
  letter-spacing: 0;
}

body.page-uniformes .uniform-group h4,
body.page-etendards .work-group-head h3,
body.page-dais .dais-product-content h3,
body.page-dais .dais-item-title,
body.page-realisations .company-title,
body.page-realisations .portfolio-item-title {
  font-size: 24px;
  color: #be9f57;
  letter-spacing: 0;
}

body.page-uniformes .portfolio-item-title,
body.page-etendards .portfolio-item-title,
body.page-realisations .portfolio-item-title {
  display: -webkit-box;
  max-width: 100%;
  min-height: 2.44em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(16px, 0.95vw, 22px);
  line-height: 1.22;
  color: #be9f57;
  letter-spacing: 0;
}

body.page-index .gallery-item-title {
  font-size: clamp(16px, 1vw, 24px);
  line-height: 1.22;
  min-height: 2.44em;
  color: #ffffff;
}

/* =====================================================
   TYPOGRAPHIE EDITORIALE
===================================================== */
body.page-index .about-content p,
body.page-index .services-header p,
body.page-index .contact-detail-content p,
body.page-uniformes .cat-section-header p,
body.page-uniformes .uniform-family-header p,
body.page-etendards .cat-section-header p,
body.page-etendards .banner-intro-copy,
body.page-etendards .banner-intro-copy p,
body.page-etendards .banner-subsection-header p,
body.page-etendards .restoration-service p,
body.page-etendards .accessory-section-copy p,
body.page-etendards .banner-type-card p,
body.page-dais .intro-text p,
body.page-dais .gallery-header p,
body.page-dais .dais-product-content p,
body.page-services .services-intro p,
body.page-services .service-body-text p,
body.page-contact .contact-info-side > p,
body.page-contact .contact-detail-content p,
body.page-contact .contact-form-side > p,
body.page-realisations .source-note p,
body.page-realisations .source-rubrique-header p {
  font-size: 20px;
  color: #000;
}

/* MENUS DE CATEGORIES RESPONSIVE */
body.page-uniformes .category-nav-inner,
body.page-etendards .category-nav-inner {
  overflow: visible;
}

body.page-uniformes .category-select,
body.page-etendards .category-select {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

body.page-uniformes .category-select-toggle,
body.page-etendards .category-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 16px 22px;
  border: 0;
  background: #0f0f0f;
  color: #be9f57;
  cursor: pointer;
  font: 500 16px/1.3 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.04em;
  text-align: left;
}

body.page-uniformes .category-select-toggle:focus-visible,
body.page-etendards .category-select-toggle:focus-visible {
  outline: 2px solid #be9f57;
  outline-offset: -4px;
}

body.page-uniformes .category-select-icon,
body.page-etendards .category-select-icon,
body.page-etendards .category-select-toggle .cat-dropdown-icon {
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

body.page-uniformes .category-select.open .category-select-icon,
body.page-etendards .category-select.open .category-select-icon,
body.page-etendards .category-select.open .cat-dropdown-icon {
  transform: rotate(180deg);
}

body.page-uniformes .category-select-menu,
body.page-etendards .category-select-menu,
body.page-etendards .category-select .cat-dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  z-index: 30;
  display: none;
  width: auto;
  min-width: 0;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 8px;
  background: #0f0f0f;
  border: 1px solid rgba(190,159,87,0.42);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

body.page-uniformes .category-select.open .category-select-menu,
body.page-etendards .category-select.open .category-select-menu,
body.page-etendards .category-select.open .cat-dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.page-uniformes .category-select-item,
body.page-etendards .category-select-item,
body.page-etendards .category-select .cat-dropdown-item {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 0;
  background: transparent;
  color: #be9f57;
  cursor: pointer;
  font: 500 16px/1.3 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.02em;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

body.page-uniformes .category-select-item:hover,
body.page-uniformes .category-select-item:focus-visible,
body.page-uniformes .category-select-item.active,
body.page-etendards .category-select-item:hover,
body.page-etendards .category-select-item:focus-visible,
body.page-etendards .category-select-item.active,
body.page-etendards .category-select .cat-dropdown-item:hover,
body.page-etendards .category-select .cat-dropdown-item:focus-visible,
body.page-etendards .category-select .cat-dropdown-item.active {
  background: #be9f57;
  color: #ffffff;
  outline: none;
}

body.page-etendards .category-select-subitem,
body.page-etendards .category-select .cat-dropdown-item {
  padding-left: 40px;
}

@media (max-width: 640px) {
  body.page-uniformes .category-nav-inner,
  body.page-etendards .category-nav-inner {
    padding: 0 16px 10px;
  }

  body.page-uniformes .category-select,
  body.page-etendards .category-select {
    max-width: none;
  }

  body.page-uniformes .category-select-menu,
  body.page-etendards .category-select-menu,
  body.page-etendards .category-select .cat-dropdown-menu {
    position: static;
    max-height: none;
    box-shadow: none;
    transform: none;
  }
}

@media (min-width: 641px) {
  body.page-uniformes .category-nav-inner,
  body.page-etendards .category-nav-inner {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  body.page-uniformes .category-select {
    position: static;
    width: auto;
    max-width: none;
    margin: 0;
  }

  body.page-uniformes .category-select-toggle {
    display: none;
  }

  body.page-uniformes .category-select-menu {
    position: static;
    display: flex;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  body.page-uniformes .category-select-item {
    position: relative;
    width: auto;
    min-height: 0;
    padding: 18px 24px;
    background: transparent;
    color: #be9f57;
    white-space: nowrap;
  }

  body.page-uniformes .category-select-item::after {
    content: '';
    position: absolute;
    right: 24px;
    bottom: 0;
    left: 24px;
    height: 2px;
    background: #be9f57;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  body.page-uniformes .category-select-item.active {
    background: transparent;
    color: #ffffff;
  }

  body.page-uniformes .category-select-item:hover,
  body.page-uniformes .category-select-item:focus-visible {
    background: transparent;
    color: #d4b96e;
  }

  body.page-uniformes .category-select-item.active::after {
    transform: scaleX(1);
  }

  body.page-etendards .category-select {
    position: relative;
    width: auto;
    max-width: none;
    margin: 0;
    flex: 0 0 auto;
  }

  body.page-etendards .category-select-toggle {
    position: relative;
    width: auto;
    min-height: 0;
    padding: 18px 24px;
    background: transparent;
    white-space: nowrap;
  }

  body.page-etendards .category-nav-inner {
    max-width: 1800px;
  }

  body.page-etendards .category-select-toggle::after {
    content: '';
    position: absolute;
    right: 24px;
    bottom: 0;
    left: 24px;
    height: 2px;
    background: #be9f57;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  body.page-etendards .category-select-toggle.active::after {
    transform: scaleX(1);
  }

  body.page-etendards .category-select .cat-dropdown-menu {
    top: 100%;
    right: auto;
    left: 0;
    width: auto;
    min-width: 260px;
    max-height: none;
    overflow: visible;
    padding: 6px;
  }

  body.page-etendards .category-select .cat-dropdown-item {
    min-height: 42px;
    padding: 10px 14px;
  }

  body.page-etendards .category-select:hover .cat-dropdown-menu,
  body.page-etendards .category-select:focus-within .cat-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.page-etendards .category-select:hover .cat-dropdown-icon,
  body.page-etendards .category-select:focus-within .cat-dropdown-icon {
    transform: rotate(180deg);
  }
}

/* MENU DE CATEGORIES ALLEMAND : VERSION MOBILE REPLIEE */
.de-category-mobile-toggle { display: none; }

@media (max-width: 640px) {
  body.page-de.page-etendards .category-nav-inner {
    display: block;
    padding: 0 18px 10px;
  }

  body.page-de.page-etendards .de-category-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 16px 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: left;
  }

  body.page-de.page-etendards .de-category-mobile-arrow {
    width: 10px;
    height: 10px;
    margin-right: 4px;
    border-right: 2px solid #be9f57;
    border-bottom: 2px solid #be9f57;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
  }

  body.page-de.page-etendards .category-nav.mobile-open .de-category-mobile-arrow {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  body.page-de.page-etendards .category-nav-inner > .cat-dropdown,
  body.page-de.page-etendards .category-nav-inner > .cat-tab {
    display: none;
  }

  body.page-de.page-etendards .category-nav.mobile-open .category-nav-inner > .cat-dropdown,
  body.page-de.page-etendards .category-nav.mobile-open .category-nav-inner > .cat-tab {
    display: block;
    width: 100%;
  }

  body.page-de.page-etendards .category-nav.mobile-open .category-nav-inner > .cat-tab,
  body.page-de.page-etendards .category-nav.mobile-open .cat-dropdown-toggle {
    padding: 14px;
    white-space: normal;
  }
}

/* HOMES FR ET DE : FLIP CARDS DU PARCOURS */
body.page-index .process-grid {
  gap: 12px;
}

body.page-index .process-flip-card {
  position: relative;
  height: clamp(460px, 30vw, 540px);
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 1px solid rgba(190,159,87,0.24);
  cursor: pointer;
  perspective: 1600px;
}

body.page-index .process-flip-card:hover {
  background: transparent;
}

body.page-index .process-flip-card::after {
  display: none;
}

body.page-index .process-step-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body.page-index .process-step-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 62px 28px 54px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

body.page-index .process-step-front {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #1a1a1a;
}

body.page-index .process-step-front::after,
body.page-index .process-step-back::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: #be9f57;
}

body.page-index .process-step-back {
  align-items: center;
  justify-content: center;
  background: #be9f57;
  transform: rotateY(180deg);
}

body.page-index .process-step-back::after {
  background: #ffffff;
  opacity: 0.7;
}

body.page-index .process-step-front h3 {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.5em;
  min-height: 3.5em;
  max-width: 100%;
  font-size: clamp(25px, 1.55vw, 32px);
  font-weight: 800;
  line-height: 1.14;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
}

body.page-index .process-step-front .process-step-icon {
  align-self: center;
}

body.page-index .process-step-back p {
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.15vw, 23px);
  font-weight: 650;
  line-height: 1.46;
  text-align: center;
  text-wrap: balance;
}

body.page-index .process-flip-card .process-step-num {
  font-size: clamp(62px, 4.2vw, 82px);
  color: rgba(190,159,87,0.18);
}

body.page-index .process-flip-card .process-step-back .process-step-num {
  position: absolute;
  top: 62px;
  left: 28px;
  margin: 0;
  color: #1a1a1a;
  transition: none;
}

body.page-index .process-flip-card .process-step-icon {
  width: 56px;
  height: 56px;
}

body.page-index .process-flip-card .process-step-icon svg {
  width: 25px;
}

body.page-index .process-flip-card.is-flipped .process-step-inner {
  transform: rotateY(180deg);
}

body.page-index .process-flip-card:focus-visible {
  outline: 2px solid #be9f57;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  body.page-index .process-flip-card:hover .process-step-inner {
    transform: rotateY(180deg);
  }
}

@media (max-width: 1400px) {
  body.page-index .process-flip-card {
    height: 470px;
    padding: 0;
  }
}

@media (max-width: 640px) {
  body.page-index .process-grid {
    gap: 16px;
  }

  body.page-index .process-flip-card {
    height: 370px;
    min-height: 0;
    padding: 0;
  }

  body.page-index .process-step-face {
    padding: 42px 30px 38px;
  }

  body.page-index .process-flip-card .process-step-back .process-step-num {
    top: 42px;
    left: 30px;
  }

  body.page-index .process-step-front h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  body.page-index .process-step-back p {
    font-size: clamp(21px, 6.3vw, 27px);
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-index .process-step-inner {
    transition: none;
  }
}
