/* ===================================================================
   LABEL CLÉMENT — Réinventons la gourmandise
   Feuille de style globale
   =================================================================== */

/* ----- 1. Reset & base ------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ----- 2. Design tokens ------------------------------------------ */
:root {
  /* Couleurs */
  --c-cream: #f8f3e9;
  --c-cream-soft: #fbf7ee;
  --c-ink: #14110d;
  --c-ink-soft: #2a2520;
  --c-gold: #c4a062;
  --c-gold-deep: #a37f3f;
  --c-gold-light: #e3cd9b;
  --c-caramel: #8b5a2b;
  --c-line: rgba(20, 17, 13, 0.12);
  --c-muted: #6b5f50;

  /* Typographie */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Mesures */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  /* Ombres */
  --shadow-soft: 0 24px 60px -25px rgba(20, 17, 13, 0.25);
  --shadow-strong: 0 32px 80px -30px rgba(20, 17, 13, 0.45);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- 3. Typographie -------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--c-ink);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.eyebrow--light {
  color: var(--c-gold-light);
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: 60ch;
}

.muted {
  color: var(--c-muted);
}

/* ----- 4. Layout primitives --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

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

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-cream);
}

.section--dark .muted {
  color: rgba(248, 243, 233, 0.65);
}

.section--dark .lead {
  color: rgba(248, 243, 233, 0.85);
}

.section--dark p {
  color: rgba(248, 243, 233, 0.78);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .eyebrow {
  display: block;
}

.divider {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--c-gold);
  border: 0;
  margin: 1.5rem auto 2rem;
}

/* ----- 5. Header / Navigation ------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.3s var(--ease),
    box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.96);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(196, 160, 98, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.theme-light {
  background: rgba(248, 243, 233, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream);
  line-height: 1;
}

.brand em {
  font-style: italic;
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-gold);
  font-size: 1.7rem;
  font-weight: 500;
}

.brand__logo {
  display: block;
  height: 44px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.site-header.is-scrolled .brand__logo {
  height: 36px;
}

.brand--footer .brand__logo {
  height: auto;
  width: 100%;
  max-width: 280px;
}

.theme-light .brand {
  color: var(--c-ink);
}

.theme-light .brand em {
  color: var(--c-gold-deep);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.main-nav a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 243, 233, 0.85);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--c-gold-light);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

/* Bouton "Commander" dans la nav : version compacte, alignée sur les liens */
.main-nav .btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.main-nav .btn::after {
  display: none;
}

.theme-light .main-nav a {
  color: var(--c-ink-soft);
}

.theme-light .main-nav a:hover,
.theme-light .main-nav a.is-active {
  color: var(--c-gold-deep);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.theme-light .nav-toggle span {
  background: var(--c-ink);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--c-ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 5rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
    z-index: 90;
  }
  .main-nav a {
    font-size: 1rem;
    color: var(--c-cream);
  }
  body.nav-open .main-nav {
    transform: translateY(0);
  }
  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background: var(--c-cream);
  }
  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background: var(--c-cream);
  }
}

/* ----- 6. Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  background: var(--c-gold);
  color: var(--c-ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
}

.btn:hover {
  background: var(--c-gold-deep);
  color: var(--c-cream);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn--ghost:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-ink);
}

.btn--ghost-light {
  background: transparent;
  border-color: var(--c-gold-light);
  color: var(--c-cream);
}

.btn--ghost-light:hover {
  background: var(--c-gold);
  color: var(--c-ink);
  border-color: var(--c-gold);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.82rem;
}

/* ----- 7. Hero ---------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-cream);
  overflow: hidden;
  background: var(--c-ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 6rem var(--gutter) 9rem;
  max-width: 920px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.6rem;
  display: block;
  font-weight: 500;
}

.hero__logo {
  display: block;
  margin: 0 auto 0.5rem;
  max-width: min(520px, 70vw);
  width: 100%;
  height: auto;
}

.page-hero__logo {
  display: block;
  margin: 0 auto 1rem;
  max-width: min(440px, 60vw);
  width: 100%;
  height: auto;
}

/* Variante paysage du logo (logo-1 transparent) — bandeau moins haut */
.page-hero__logo--landscape {
  max-width: min(380px, 70vw);
  margin-bottom: 0.25rem;
}

/* Tagline dans le page-hero : moins d'espace que sur le hero accueil */
.page-hero .hero__tagline {
  margin: 0.5rem 0 0;
}

.page-hero .lead {
  margin-top: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin: 0 0 0.4em;
  color: var(--c-cream);
}

.hero__title .underline {
  display: block;
  width: 90px;
  height: 1px;
  background: var(--c-gold);
  margin: 1.2rem auto;
  position: relative;
}

.hero__title .underline::before,
.hero__title .underline::after {
  content: "";
  position: absolute;
  top: -1.5px;
  width: 22px;
  height: 4px;
}

.hero__title .underline::before {
  left: 50%;
  transform: translateX(-105%);
  background: linear-gradient(
    90deg,
    #002395 0%,
    #002395 33%,
    #ffffff 33%,
    #ffffff 66%,
    transparent 66%
  );
}

.hero__title .underline::after {
  right: 50%;
  transform: translateX(105%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 33%,
    #ffffff 33%,
    #ffffff 66%,
    #ed2939 66%
  );
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(248, 243, 233, 0.85);
  margin: 0 0 2.5rem;
}

.hero__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: rgba(248, 243, 233, 0.9);
  max-width: 60ch;
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(248, 243, 233, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: var(--c-gold);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.4);
    transform-origin: top;
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ----- 8. Brand intro band --------------------------------------- */
.intro-band {
  text-align: center;
  background: var(--c-cream-soft);
  position: relative;
}

.intro-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  text-align: left;
}

.intro-band__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.intro-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.intro-band__media:hover img {
  transform: scale(1.04);
}

.intro-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-gold);
  pointer-events: none;
  transform: translate(14px, 14px);
}

@media (max-width: 760px) {
  .intro-band__grid {
    grid-template-columns: 1fr;
  }
  .intro-band__media {
    aspect-ratio: 4 / 3;
  }
}


/* ----- 9. Coffret cards ------------------------------------------ */
.coffrets {
  background: var(--c-cream);
}

.coffret-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.coffret-grid .coffret--solo {
  grid-column: span 2;
}

.coffret-grid .coffret--combo {
  grid-column: span 3;
}

@media (max-width: 880px) {
  .coffret-grid {
    grid-template-columns: 1fr 1fr;
  }
  .coffret-grid .coffret--solo,
  .coffret-grid .coffret--combo {
    grid-column: span 1;
  }
  .coffret-grid .coffret--combo:last-child:nth-child(odd) {
    grid-column: span 2;
  }
}

@media (max-width: 540px) {
  .coffret-grid {
    grid-template-columns: 1fr;
  }
  .coffret-grid .coffret--solo,
  .coffret-grid .coffret--combo,
  .coffret-grid .coffret--combo:last-child:nth-child(odd) {
    grid-column: span 1;
  }
}

.coffret {
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.coffret:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--c-gold);
}

.coffret__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-ink);
}

.coffret__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.coffret:hover .coffret__media img {
  transform: scale(1.05);
}

.coffret__body {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.coffret__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
}

.coffret h3 {
  margin: 0;
  font-size: 1.4rem;
  font-style: italic;
}

.coffret__desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.coffret__qty {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--c-line);
}

/* Accordion details inside each coffret */
.coffret__details {
  border-top: 1px solid var(--c-line);
  text-align: left;
  background: var(--c-cream);
}

.coffret__details summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.25s var(--ease);
}

.coffret__details summary::-webkit-details-marker {
  display: none;
}

.coffret__details summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  transition: transform 0.3s var(--ease);
  color: var(--c-gold-deep);
}

.coffret__details[open] summary::after {
  content: "−";
}

.coffret__details summary:hover {
  background: rgba(196, 160, 98, 0.08);
}

.coffret__details-body {
  padding: 0.5rem 1.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.coffret__details-body dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 0.85rem;
}

.coffret__details-body dt {
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: 0.05em;
}

.coffret__details-body dd {
  margin: 0;
}

/* Pillars 2×2 grid modifier */
.pillars--2x2 {
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* Format carré + contenu centré pour les 4 valeurs */
.pillars--2x2 .pillar {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.75rem;
}

@media (max-width: 760px) {
  .pillars--2x2 {
    grid-template-columns: 1fr;
  }
  .pillars--2x2 .pillar {
    aspect-ratio: auto;
  }
}

/* Hover-swap image (used on pillars to reveal a second image) */
.pillar--with-image {
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
}

.pillar__image-stack {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-ink);
  margin-bottom: 1.25rem;
}

.pillar__image-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s var(--ease);
}

.pillar__image-stack img:nth-child(2) {
  opacity: 0;
}

.pillar--with-image:hover .pillar__image-stack img:nth-child(1) {
  opacity: 0;
}

.pillar--with-image:hover .pillar__image-stack img:nth-child(2) {
  opacity: 1;
}

.pillar--with-image .pillar__body {
  padding: 0 0.25rem;
}

/* Product specs (shared info under coffrets) */
.product-specs {
  margin: 4rem auto 0;
  max-width: 880px;
  padding: 2rem 2.25rem;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  border-left: 2px solid var(--c-gold);
}

.product-specs__title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.product-specs dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.65rem 1.5rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.product-specs dt {
  color: var(--c-ink);
  font-weight: 600;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}

.product-specs dd {
  margin: 0;
  color: var(--c-muted);
}

@media (max-width: 600px) {
  .product-specs dl {
    grid-template-columns: 1fr;
    gap: 0.2rem 0;
  }
  .product-specs dd {
    margin-bottom: 0.85rem;
  }
}

/* ----- 10. Order form -------------------------------------------- */
.order {
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
}

.order::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 30% 30%,
    rgba(196, 160, 98, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.order .container {
  position: relative;
}

.order-form {
  max-width: 720px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.5rem;
}

.order-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-form .field--full,
.order-form .field--actions {
  grid-column: 1 / -1;
}

.order-form label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 243, 233, 0.75);
  font-weight: 500;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(248, 243, 233, 0.25);
  color: var(--c-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}

.order-form textarea {
  resize: vertical;
  min-height: 120px;
  padding: 0.85rem 0;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  border-bottom-color: var(--c-gold);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(248, 243, 233, 0.35);
}

.qty-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.qty-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(248, 243, 233, 0.12);
}

.qty-row span {
  font-size: 0.95rem;
  color: rgba(248, 243, 233, 0.9);
}

.qty-row input {
  text-align: center;
  border: 1px solid rgba(248, 243, 233, 0.2);
  padding: 0.5rem 0.5rem;
  font-size: 0.95rem;
}

.qty-row input:focus {
  border-color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}

.field--actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.78rem;
  color: rgba(248, 243, 233, 0.55);
  margin: 0;
}

@media (max-width: 640px) {
  .order-form {
    grid-template-columns: 1fr;
  }
}

/* ----- 11. Story sections (Découvrir) ---------------------------- */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: var(--c-ink);
  color: var(--c-cream);
  text-align: center;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.55;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) brightness(0.7);
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.25) 0%,
    rgba(14, 14, 14, 0.8) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.page-hero h1 {
  color: var(--c-cream);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  color: rgba(248, 243, 233, 0.78);
  margin: 1.5rem auto 0;
  font-style: italic;
}

.story-section {
  position: relative;
}

.story-section + .story-section {
  border-top: 1px solid var(--c-line);
}

.story-section.section--dark + .story-section,
.story-section + .story-section.section--dark {
  border-top: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.story-grid--reverse {
  grid-template-columns: 1.05fr 1fr;
}

.story-grid--reverse .story-grid__media {
  order: 2;
}

.story-grid__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.story-grid__media img,
.story-grid__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-grid__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-gold);
  pointer-events: none;
  transform: translate(16px, 16px);
}

.section--dark .story-grid__media::after {
  border-color: var(--c-gold-light);
}

@media (max-width: 880px) {
  .story-grid,
  .story-grid--reverse {
    grid-template-columns: 1fr;
  }
  .story-grid--reverse .story-grid__media {
    order: 0;
  }
  .story-grid__media {
    aspect-ratio: 4 / 3;
  }
}

/* Pillars (3-col cards) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: rgba(196, 160, 98, 0.06);
  border: 1px solid var(--c-line);
}

.section--dark .pillar {
  background: rgba(196, 160, 98, 0.08);
  border-color: rgba(196, 160, 98, 0.18);
}

.pillar h3 {
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  color: var(--c-gold-deep);
}

.section--dark .pillar h3 {
  color: var(--c-gold-light);
}

.pillar p {
  font-size: 0.95rem;
  color: var(--c-muted);
  margin: 0;
}

.section--dark .pillar p {
  color: rgba(248, 243, 233, 0.75);
}

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

/* Steps (4 numbered items) */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  counter-reset: step;
}

.step {
  position: relative;
}

.step__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-ink-soft);
  margin-bottom: 1.5rem;
}

.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.step:hover .step__media img {
  transform: scale(1.04);
}

.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--c-gold-deep);
  margin-bottom: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-gold);
  display: block;
}

.section--dark .step__num {
  color: var(--c-gold-light);
}

.step h3 {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.5em;
}

.step p {
  font-size: 0.92rem;
  color: var(--c-muted);
  margin: 0;
}

.section--dark .step p {
  color: rgba(248, 243, 233, 0.75);
}

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

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

/* Pull quote */
.pull-quote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 0;
}

.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.45;
  color: var(--c-ink);
  margin: 0 0 1.5rem;
}

.section--dark .pull-quote p {
  color: var(--c-cream);
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}

.section--dark .pull-quote cite {
  color: var(--c-gold-light);
}

/* Pull quote inline variant — sits inside a column, accent borders, left-aligned */
.pull-quote--inline {
  max-width: none;
  margin: 2.25rem 0 2rem;
  padding: 1.75rem 0 1.5rem;
  text-align: left;
  border-top: 1px solid var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
}

.pull-quote--inline p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.4;
  color: var(--c-ink);
  margin: 0;
  letter-spacing: 0.005em;
}

/* Founder card */
.founder {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: 3rem;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.section--dark .founder {
  background: rgba(248, 243, 233, 0.04);
  border-color: rgba(248, 243, 233, 0.1);
}

.founder__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.founder h3 {
  font-style: italic;
  margin-bottom: 0.4em;
}

.founder__role {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: 1.5rem;
}

.section--dark .founder__role {
  color: var(--c-gold-light);
}

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

/* RSE list */
.rse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.rse-item {
  padding: 1.75rem;
  background: var(--c-cream-soft);
  border-left: 2px solid var(--c-gold);
}

.rse-item h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--c-ink);
}

.rse-item p {
  font-size: 0.92rem;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}

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

/* ----- 12. Galerie ----------------------------------------------- */
.gallery {
  background: var(--c-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  grid-column: span 4;
  grid-row: span 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--c-ink);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.06);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 6;
}

.gallery-item--featured {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-cream);
  font-size: 1.6rem;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery-item:hover .gallery-item__icon {
  opacity: 1;
}

.gallery-item--video::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(196, 160, 98, 0.95);
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 50%;
  z-index: 2;
  padding-left: 4px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.gallery-item--video:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 880px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--featured {
    grid-column: span 3;
  }
  .gallery-item--featured,
  .gallery-item--tall {
    grid-row: span 2;
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--featured {
    grid-column: span 1;
  }
  .gallery-item--featured {
    grid-column: span 2;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox__content img,
.lightbox__content video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: var(--c-cream);
  font-size: 2rem;
  line-height: 1;
}

/* Pioneers */
.pioneers {
  background: var(--c-ink);
  color: var(--c-cream);
}

.pioneers .section-title h2 {
  color: var(--c-cream);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto;
  max-width: 880px;
}

.stat {
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--c-gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(248, 243, 233, 0.7);
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pioneers-list {
  max-width: 880px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: rgba(196, 160, 98, 0.06);
  border: 1px solid rgba(196, 160, 98, 0.18);
  text-align: center;
}

/* Banderole : témoignages des pionniers — défilement infini */
.testimonials-marquee {
  margin: 4rem -2rem 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.testimonials-marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0;
  animation: testimonials-scroll 120s linear infinite;
}

.testimonials-marquee:hover .testimonials-marquee__track,
.testimonials-marquee:focus-within .testimonials-marquee__track {
  animation-play-state: paused;
}

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial {
  flex: 0 0 320px;
  padding: 1.5rem 1.5rem 1.25rem;
  background: rgba(248, 243, 233, 0.04);
  border: 1px solid rgba(196, 160, 98, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(248, 243, 233, 0.92);
  margin: 0;
}

.testimonial__author {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee__track {
    animation: none;
  }
  .testimonials-marquee {
    overflow-x: auto;
  }
}

.pioneers-list h3 {
  font-style: italic;
  color: var(--c-gold-light);
}

.pioneers-list__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.4rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(248, 243, 233, 0.85);
}

.pioneers-list__names span {
  position: relative;
}

.pioneers-list__names span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -0.85rem;
  color: var(--c-gold);
}

/* ----- 13. Contact ----------------------------------------------- */
.contact {
  background: var(--c-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: 3rem;
}

.contact-info h3 {
  font-style: italic;
  margin-bottom: 0.5em;
}

.contact-info p {
  color: var(--c-muted);
  font-size: 0.95rem;
}

.contact-channels {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--c-line);
  background: var(--c-cream-soft);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-channel:hover {
  border-color: var(--c-gold);
  transform: translateX(4px);
}

.contact-channel__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-ink);
  color: var(--c-gold);
  border-radius: 50%;
  font-size: 0.95rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
}

.contact-channel__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: block;
  margin-bottom: 0.15rem;
}

.contact-channel__value {
  font-size: 1rem;
  color: var(--c-ink);
  font-weight: 500;
}

/* Contact form (light theme) */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: var(--c-cream-soft);
  border: 1px solid var(--c-line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form .field--full,
.contact-form .field--actions {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 0;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--c-gold);
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* Downloads */
.downloads {
  background: var(--c-cream-soft);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  text-align: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.download-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}

.download-card__icon {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-gold-deep);
  font-size: 1.6rem;
}

.download-card h4 {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 500;
}

.download-card span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ----- 14. Footer ------------------------------------------------ */
.site-footer {
  background: var(--c-ink);
  color: rgba(248, 243, 233, 0.7);
  padding: 4rem 0 2rem;
  text-align: center;
}

.site-footer .brand {
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-gold-light);
  margin: 0 0 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.footer-divider {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  height: 1px;
  background: rgba(196, 160, 98, 0.25);
  border: 0;
}

.footer-meta {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.footer-tricolor {
  display: inline-flex;
  margin: 0 0.5rem;
  vertical-align: middle;
}

.footer-tricolor span {
  width: 10px;
  height: 4px;
}
.footer-tricolor span:nth-child(1) {
  background: #002395;
}
.footer-tricolor span:nth-child(2) {
  background: #ffffff;
}
.footer-tricolor span:nth-child(3) {
  background: #ed2939;
}

/* ----- 15. Animations on scroll ---------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ----- 16. Toast / notice ---------------------------------------- */
.notice {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 1rem 1.75rem;
  border: 1px solid var(--c-gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 300;
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-strong);
  max-width: 90vw;
  text-align: center;
}

.notice.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* ----- 17. Skip link --------------------------------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--c-gold);
  color: var(--c-ink);
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}
