@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@200;300;400;500&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap");

/* ========================================================================== 
   The Lord Mind — feuille de style
   Palette issue de la charte : beige, écru, brun, navy, aubergine, ciel
   ========================================================================== */

:root {
  --ecru: #eee5d9;
  --ecru-clair: #e8e4e0;
  --beige: #d8d0bf;
  --brun: #6b5137;
  --brun-fonce: #4a3826;
  --navy: #1d2840;
  --aubergine: #443047;
  --ciel: #b9c8d6;
  --encre: #262019;

  --serif-display: "Cormorant Garamond", "Georgia", serif;
  --serif-texte: "EB Garamond", "Georgia", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --largeur-max: 72rem;
  --transition: 0.3s ease;
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--ecru);
  color: var(--encre);
  font-family: var(--serif-texte);
  font-size: 1.125rem;
  line-height: 1.65;
}

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

h1,
h2,
h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--brun-fonce);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brun);
}

/* Focus visible au clavier */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utilitaires ---------- */

.conteneur {
  max-width: var(--largeur-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lien-evitement {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--navy);
  color: var(--ecru);
  padding: 0.6rem 1.2rem;
  font-family: var(--sans);
  text-decoration: none;
  transition: top 0.2s ease;
}

.lien-evitement:focus {
  top: 1rem;
  color: var(--ecru);
}

.surtitre {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brun);
  margin: 0 0 0.8rem;
}

.filet {
  width: 3rem;
  height: 1px;
  background: var(--brun);
  border: 0;
  margin: 0 0 1.5rem;
}

/* ---------- En-tête ---------- */

.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ecru) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--beige);
}

.entete__barre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: var(--largeur-max);
  margin: 0 auto;
}

.marque {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--encre);
  text-decoration: none;
  white-space: nowrap;
}

.marque span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brun);
}

.nav__liste {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav__lien {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--encre);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav__lien:hover {
  color: var(--brun-fonce);
  border-bottom-color: var(--brun);
}

.nav__lien[aria-current="page"] {
  border-bottom-color: var(--encre);
}

.nav__lien--cta {
  border: 1px solid var(--encre);
  padding: 0.55rem 1rem;
  transition: background var(--transition), color var(--transition);
}

.nav__lien--cta:hover {
  background: var(--encre);
  color: var(--ecru);
  border-bottom-color: var(--encre);
}

.nav__langues {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.nav__lang {
  color: var(--encre);
  text-decoration: none;
  opacity: 0.55;
}

.nav__lang:hover {
  opacity: 0.85;
}

.nav__lang[aria-current="true"] {
  opacity: 1;
  border-bottom: 1px solid var(--encre);
}

.nav__langues-separateur {
  opacity: 0.4;
  margin: 0 0.35em;
}

.burger {
  display: none;
  background: none;
  border: 1px solid var(--encre);
  padding: 0.55rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--encre);
  cursor: pointer;
}

@media (max-width: 1180px) {
  .burger {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ecru-clair);
    border-bottom: 1px solid var(--beige);
    display: none;
  }

  .nav[data-ouvert="true"] {
    display: block;
  }

  .nav__liste {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
  }

  .nav__liste li {
    width: 100%;
  }

  .nav__lien {
    display: block;
    padding: 0.9rem 0;
  }

  button.nav__lien {
    width: 100%;
  }

  .nav__lien--cta {
    display: inline-block;
    margin-top: 0.8rem;
  }

  .nav__langues {
    display: block;
    padding: 0.9rem 0 0.2rem;
  }
}

/* ---------- Héros ---------- */

.heros {
  position: relative;
}

.heros__image {
  width: 100%;
  height: min(88vh, 52rem);
  object-fit: cover;
}

.heros__voile {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(to top, rgba(38, 32, 25, 0.55), transparent 45%);
}

.heros__accroche {
  color: var(--ecru-clair);
  font-family: var(--serif-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 12px rgba(38, 32, 25, 0.6);
}

.heros--page {
  background: var(--navy);
  color: var(--ecru);
  text-align: center;
  padding: 5rem 1.5rem 4.5rem;
}

.heros--page .surtitre {
  color: var(--ciel);
}

.heros--page h1 {
  margin: 0 auto;
  max-width: 40ch;
}

.heros--page p {
  max-width: 55ch;
  margin: 1.2rem auto 0;
  color: color-mix(in srgb, var(--ecru) 88%, var(--navy));
}

/* ---------- Boutons ---------- */

.bouton {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 1px solid currentColor;
  color: var(--encre);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.bouton:hover {
  background: var(--encre);
  color: var(--ecru);
}

.bouton--clair {
  color: var(--ecru-clair);
}

.bouton--clair:hover {
  background: var(--ecru-clair);
  color: var(--navy);
}

.bouton--plein {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ecru);
}

.bouton--plein:hover {
  background: var(--brun-fonce);
  border-color: var(--brun-fonce);
  color: var(--ecru);
}

/* ---------- Sections ---------- */

.section {
  padding: 5rem 0;
}

.section--claire {
  background: var(--ecru-clair);
}

.section--navy {
  background: var(--navy);
  color: var(--ecru);
}

.section--navy .surtitre {
  color: var(--ciel);
}

.section--navy a {
  color: var(--ecru);
}

/* Duo image / texte */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.duo--inverse .duo__media {
  order: 2;
}

.duo__media img {
  width: 100%;
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
}

.duo__texte h2 {
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .duo,
  .duo--inverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .duo--inverse .duo__media {
    order: 0;
  }
}

/* Piliers (valeurs) */
.piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.pilier {
  border-top: 1px solid var(--beige);
  padding-top: 2rem;
}

.pilier h3 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

@media (max-width: 700px) {
  .piliers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Galeries */
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.galerie figure {
  margin: 0;
}

.galerie img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.galerie--paysage img {
  aspect-ratio: 4 / 3;
}

.galerie figcaption {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brun-fonce);
  padding: 0.7rem 0.1rem 0;
}

/* Cartes de looks */
.looks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.look {
  margin: 0;
  background: var(--ecru-clair);
  border: 1px solid var(--beige);
}

.look > a {
  display: block;
}

.look img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.look figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem 1.1rem;
}

.look__nom {
  font-family: var(--serif-display);
  font-size: 1.25rem;
  color: inherit;
  text-decoration: none;
}

a.look__nom:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.look__mention {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brun);
  white-space: nowrap;
}

/* Matières */
.matieres {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.matiere {
  margin: 0;
  position: relative;
}

.matiere img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.matiere figcaption {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--encre);
  border-left: 2px solid var(--brun);
  padding: 0.6rem 0 0 0.8rem;
  margin-top: 0.6rem;
}

/* Listes éditoriales (axes, territoire, inspirations) */
.liste-editoriale {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.liste-editoriale li {
  border-bottom: 1px solid var(--beige);
  padding: 1.1rem 0.2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deux-colonnes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

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

/* Boutons de navigation (recherche) */
button.nav__lien {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  text-align: left;
}

button.nav__lien:hover {
  border-bottom-color: var(--brun);
}

/* Recherche en overlay */
.recherche-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ecru);
  overflow-y: auto;
  padding: 5.5rem 1.5rem 3rem;
  display: none;
}

.recherche-overlay[data-ouvert="true"] {
  display: block;
}

.recherche-fermer {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--encre);
  padding: 0.55rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--encre);
  cursor: pointer;
}

.recherche-boite {
  max-width: 44rem;
  margin: 0 auto;
}

.recherche-boite label {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brun);
  margin-bottom: 1rem;
}

.recherche-boite input[type="search"] {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--navy);
  font-family: var(--serif-display);
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  color: var(--encre);
  padding: 0.4rem 0;
}

.recherche-resultats {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
}

.recherche-resultats li {
  border-bottom: 1px solid var(--beige);
}

.recherche-resultats a {
  display: block;
  padding: 1.1rem 0.3rem;
  text-decoration: none;
  color: var(--encre);
}

.recherche-resultats a:hover {
  background: var(--ecru-clair);
}

.recherche-resultat__type {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brun);
  margin-bottom: 0.25rem;
}

.recherche-resultat__titre {
  font-family: var(--serif-display);
  font-size: 1.3rem;
}

.recherche-resultat__description {
  font-size: 0.95rem;
  color: var(--brun-fonce);
  margin: 0.25rem 0 0;
}

.recherche-vide {
  margin-top: 2.2rem;
  font-style: italic;
  color: var(--brun-fonce);
}

/* Sélection (cœurs) */
.look {
  position: relative;
}

.selection-bouton {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--beige);
  background: color-mix(in srgb, var(--ecru-clair) 92%, transparent);
  color: var(--brun-fonce);
  font-size: 1.05rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.selection-bouton:hover {
  border-color: var(--navy);
}

.selection-bouton[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ecru);
}

.bouton[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ecru);
}

.selection-retirer {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brun);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.selection-retirer:hover {
  color: var(--brun-fonce);
}

/* FAQ */
.faq {
  max-width: 52rem;
}

.faq details {
  border-bottom: 1px solid var(--beige);
}

.faq summary {
  cursor: pointer;
  font-family: var(--serif-display);
  font-size: 1.35rem;
  padding: 1.2rem 2.6rem 1.2rem 0.2rem;
  position: relative;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--brun);
}

.faq details[open] summary::after {
  content: "–";
}

.faq__contenu {
  padding: 0 0.2rem 1.5rem;
  max-width: 65ch;
}

/* Fiche produit (galerie multi-vues + informations) */
.produit {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

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

.produit-galerie__principale {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ecru-clair);
}

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

.produit-galerie__vignettes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.produit-galerie__vignette {
  padding: 0;
  border: 1px solid var(--beige);
  background: none;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.produit-galerie__vignette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.produit-galerie__vignette[aria-current="true"] {
  border-color: var(--navy);
}

.produit-info__tag {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brun);
  margin: 0 0 1.4rem;
}

.produit-fiche {
  list-style: none;
  margin: 1.8rem 0;
  padding: 1.6rem 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}

.produit-fiche li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  font-family: var(--sans);
  font-size: 0.92rem;
}

.produit-fiche dt,
.produit-fiche__cle {
  color: var(--brun);
}

.produit-fiche dd,
.produit-fiche__valeur {
  margin: 0;
  text-align: right;
  color: var(--encre);
}

.produit-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* Carte "prochainement" (pièces en atelier, sans visuel produit) */
.piece-avenir {
  position: relative;
  color: var(--ecru-clair);
}

.piece-avenir img {
  filter: brightness(0.55);
}

.piece-avenir figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}

.piece-avenir .look__nom {
  color: var(--ecru-clair);
}

.piece-avenir .look__mention {
  color: var(--ciel);
}

/* Manifeste (bloc éditorial dans un héros de page, ex. La Maison) */
.manifeste {
  max-width: 46ch;
  margin: 2.4rem auto 0;
  padding-top: 2.2rem;
  border-top: 1px solid color-mix(in srgb, var(--ecru) 25%, var(--navy));
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.55;
  color: color-mix(in srgb, var(--ecru) 92%, var(--navy));
}

/* Filigrane (motif Adinkra en séparateur de section, très faible opacité) */
.filigrane {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  background: var(--ecru-clair);
  overflow: hidden;
}

.filigrane::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9rem;
  height: 9rem;
  transform: translate(-50%, -50%);
  background: url("../assets/brand/motif-sankofa.png") center / contain no-repeat;
  opacity: 0.1;
}

.filigrane__texte {
  position: relative;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brun);
}

/* Citation éditoriale (accueil) */
.citation {
  background: var(--ecru-clair);
  border-bottom: 1px solid var(--beige);
  text-align: center;
  padding: 5.5rem 1.5rem;
}

.citation blockquote {
  margin: 0 auto;
  max-width: 44ch;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: var(--navy);
}

.citation blockquote p {
  margin: 0;
}

.citation__source {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brun);
}

/* Bandeau Lord Mind Club — univers distinct, ton volontairement différent */
.club {
  background: var(--aubergine);
  color: var(--ecru-clair);
  text-align: center;
  padding: 4rem 1.5rem;
}

.club .surtitre {
  color: var(--ciel);
}

.club h2 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 30ch;
  margin: 0 auto 1rem;
}

.club p {
  max-width: 56ch;
  margin: 0 auto 0.8rem;
}

.club__note {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Bandeau d'appel à l'action */
.bandeau {
  text-align: center;
  padding: 5rem 1.5rem;
}

.bandeau h2 {
  max-width: 26ch;
  margin: 0 auto 1rem;
}

.bandeau p {
  max-width: 52ch;
  margin: 0 auto 2rem;
}

/* ---------- Formulaire ---------- */

.formulaire {
  max-width: 42rem;
  margin-top: 2.5rem;
}

.champ {
  margin-bottom: 1.6rem;
}

.champ label {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brun-fonce);
  margin-bottom: 0.5rem;
}

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  font-family: var(--serif-texte);
  font-size: 1.05rem;
  color: var(--encre);
  background: var(--ecru-clair);
  border: 1px solid var(--beige);
  padding: 0.85rem 1rem;
}

.champ textarea {
  min-height: 10rem;
  resize: vertical;
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  border-color: var(--navy);
}

.note-formulaire {
  font-size: 0.95rem;
  color: var(--brun-fonce);
  font-style: italic;
}

/* ---------- Pied de page ---------- */

.pied {
  background: var(--navy);
  color: var(--ecru);
  padding: 3.5rem 0 2.5rem;
}

.pied__grille {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

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

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

.pied .marque {
  color: var(--ecru);
}

.pied .marque span {
  color: var(--ciel);
}

.pied__titre {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ciel);
  margin: 0 0 1.1rem;
}

.pied__adresse {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--ecru) 80%, var(--navy));
  margin: 1rem 0 0;
}

.pied__nav ul,
.pied__reseaux {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pied__nav a {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecru);
  text-decoration: none;
}

.pied__nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pied__reseaux a {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--ecru);
  text-decoration: none;
}

.pied__reseaux a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pied__reseaux span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--ecru) 65%, var(--navy));
  margin-top: 0.2rem;
}

/* Infolettre (pied de page) */
.pied__infolettre p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--ecru) 80%, var(--navy));
  margin-bottom: 1.1rem;
}

.pied__infolettre-champ {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pied__infolettre-champ input[type="email"] {
  flex: 1 1 12rem;
  min-width: 0;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--ecru) 35%, var(--navy));
  color: var(--ecru);
  font-family: var(--serif-texte);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
}

.pied__infolettre-champ input[type="email"]::placeholder {
  color: color-mix(in srgb, var(--ecru) 55%, var(--navy));
}

.pied__infolettre-champ .bouton {
  padding: 0.7rem 1.4rem;
  font-size: 0.78rem;
}

.pied__mention {
  grid-column: 1 / -1;
  width: 100%;
  border-top: 1px solid color-mix(in srgb, var(--ecru) 25%, var(--navy));
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--ecru) 75%, var(--navy));
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.pied .note-formulaire {
  color: var(--ciel);
}

.pied__mention a {
  color: inherit;
}

.pied__mention a:hover {
  color: var(--ecru);
}

/* ---------- Apparitions au défilement ---------- */

.apparition {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.apparition--visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .apparition {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Page d'accès ---------- */

.heros__voile--centre {
  justify-content: center;
  background: linear-gradient(to top, rgba(38, 32, 25, 0.55), rgba(38, 32, 25, 0.2));
}

.acces-panneau {
  width: min(26rem, 100%);
  background: var(--ecru);
  box-shadow: 0 1.5rem 4rem rgba(38, 32, 25, 0.35);
  padding: 2.6rem 2.2rem;
  text-align: center;
}

.acces-panneau .filet {
  margin-inline: auto;
}

.acces-panneau h1 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.acces-panneau__texte {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.acces-panneau .formulaire {
  margin-top: 1.6rem;
}

.acces-panneau .champ {
  text-align: left;
  margin-bottom: 1.2rem;
}

.acces-panneau .bouton {
  width: 100%;
}

.acces-panneau .note-formulaire {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ========================================================================== 
   Direction 2026 — adaptation fidèle du modèle h27xLordmind
   ========================================================================== */

:root {
  --navy: #0a192f;
  --navy-deep: #050e1c;
  --ecru: #f5f2eb;
  --ecru-clair: #f5f2eb;
  --beige: #d8cfc4;
  --stone: #c9b8a8;
  --brun: #745c49;
  --brun-fonce: #4a3b32;
  --aubergine: #3e2a3d;
  --ciel: #c9d4de;
  --encre: #0a192f;
  --serif-display: "Cormorant Garamond", Georgia, serif;
  --serif-texte: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --largeur-max: 87.5rem;
  --ease-editorial: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: var(--ecru);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.search-open { overflow: hidden; }

h1, h2, h3 {
  font-family: var(--serif-display);
  font-weight: 300;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(3.15rem, 7vw, 7.25rem); line-height: 0.98; }
h2 { font-size: clamp(2.65rem, 5vw, 5rem); line-height: 1.02; }
h3 { font-size: clamp(1.6rem, 2.3vw, 2.15rem); }

a { color: inherit; }

.conteneur {
  max-width: var(--largeur-max);
  padding-inline: clamp(1.5rem, 5vw, 4.5rem);
}

.surtitre,
.editorial-eyebrow {
  color: inherit;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  line-height: 1.4;
  text-transform: uppercase;
}

.filet {
  width: 3.5rem;
  background: currentColor;
  opacity: 0.45;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--ecru);
  opacity: 1;
  visibility: visible;
  transition: opacity 1s var(--ease-editorial), visibility 1s;
}

.loader--hidden { opacity: 0; visibility: hidden; }
.loader p { margin: 0; font: italic 300 clamp(2.3rem, 6vw, 5rem)/1 var(--serif-display); }
.loader span { display: inline-block; opacity: 0; transform: translateY(100%); animation: loader-rise 0.9s var(--ease-editorial) forwards; }
.loader span:nth-child(2) { animation-delay: 0.12s; }
.loader span:nth-child(3) { animation-delay: 0.24s; }

@keyframes loader-rise { to { opacity: 1; transform: none; } }

/* Curseur */
@media (pointer: fine) {
  body, a, button, input, select, textarea, summary { cursor: none; }
  .page-acces { cursor: auto; }
  .page-acces a,
  .page-acces button { cursor: pointer; }
  .page-acces input,
  .page-acces textarea { cursor: text; }
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2100;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: difference;
    transform: translate3d(-40px, -40px, 0);
  }
  .cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #fff; }
  .cursor-ring { width: 36px; height: 36px; margin: -18px 0 0 -18px; border: 1px solid #fff; transition: width 0.35s var(--ease-editorial), height 0.35s var(--ease-editorial), margin 0.35s var(--ease-editorial), background 0.35s; }
  .cursor-ring--active { width: 62px; height: 62px; margin: -31px 0 0 -31px; background: rgb(255 255 255 / 0.1); }
}

/* Header et menu plein écran */
.entete {
  position: fixed;
  inset: 0 0 auto;
  z-index: 600;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  color: var(--ecru);
}

.entete__barre {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: none;
  padding: 1.75rem clamp(1.5rem, 5vw, 4.5rem);
  mix-blend-mode: difference;
}

.entete .marque {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  gap: 0.28rem;
  color: inherit;
  font: 400 0.9rem/1 "Playfair Display", serif;
  font-style: normal;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.entete .marque span {
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.entete .marque em {
  font: italic 300 1.35rem/1 var(--serif-display);
  letter-spacing: 0;
  text-transform: none;
}

.burger {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  border: 0;
  color: inherit;
  font: 400 0.65rem/1 var(--sans);
  letter-spacing: 0.28em;
}

.burger__lines {
  position: relative;
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  transition: background 0.35s;
}

.burger__lines::before,
.burger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.45s var(--ease-editorial);
}

.burger__lines::before { top: -7px; }
.burger__lines::after { top: 7px; }
.burger--active .burger__lines { background: transparent; }
.burger--active .burger__lines::before { transform: translateY(7px) rotate(45deg); }
.burger--active .burger__lines::after { transform: translateY(-7px) rotate(-45deg); }

.entete__actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.entete__action {
  position: relative;
  padding: 0.25rem 0;
  border: 0;
  background: none;
  color: inherit;
  font: 400 0.62rem/1 var(--sans);
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
}

.entete__action::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-editorial);
}

.entete__action:hover::after { transform: scaleX(1); transform-origin: left; }

.nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: block;
  overflow-y: auto;
  padding: clamp(8rem, 14vh, 10rem) clamp(1.5rem, 5vw, 4.5rem) 3rem;
  background: var(--navy-deep);
  color: var(--ecru);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.75s var(--ease-editorial), visibility 0.75s;
}

.nav[data-ouvert="true"] { opacity: 1; visibility: visible; pointer-events: auto; }
.nav__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(2.5rem, 5vw, 6rem); max-width: var(--largeur-max); margin: 0 auto; }
.nav__column > p { margin: 0 0 2rem; opacity: 0.42; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.34em; text-transform: uppercase; }
.nav__column ul { margin: 0; padding: 0; list-style: none; }
.nav__column li { margin: 0 0 1rem; overflow: hidden; }
.nav__column a { display: inline-block; color: var(--ecru); font: 300 clamp(1.55rem, 2.3vw, 2.2rem)/1.15 var(--serif-display); text-decoration: none; transform: translateY(120%); opacity: 0; transition: transform 0.8s var(--ease-editorial), opacity 0.8s var(--ease-editorial), letter-spacing 0.4s var(--ease-editorial); }
.nav[data-ouvert="true"] .nav__column a { transform: none; opacity: 1; }
.nav__column li:nth-child(2) a { transition-delay: 0.06s; }
.nav__column li:nth-child(3) a { transition-delay: 0.12s; }
.nav__column li:nth-child(4) a { transition-delay: 0.18s; }
.nav__column li:nth-child(5) a { transition-delay: 0.24s; }
.nav__column a:hover { letter-spacing: 0.035em; }
.nav__foot { display: flex; justify-content: space-between; gap: 2rem; max-width: var(--largeur-max); margin: clamp(4rem, 10vh, 8rem) auto 0; padding-top: 1.4rem; border-top: 1px solid rgb(245 242 235 / 0.12); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; }
.nav__foot a { color: inherit; text-decoration: none; }

/* Hero de la homepage */
.cinematic-hero {
  position: relative;
  min-height: 45rem;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem) clamp(5.5rem, 12vh, 8rem);
  background: var(--navy-deep);
  color: var(--ecru);
}

.cinematic-hero__media,
.cinematic-hero__media img,
.cinematic-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.cinematic-hero__media { overflow: hidden; }
.cinematic-hero__media img { object-fit: cover; transform: scale(1.045); will-change: transform; }
.cinematic-hero__shade { background: linear-gradient(90deg, rgb(5 14 28 / 0.63), transparent 68%), linear-gradient(0deg, rgb(5 14 28 / 0.66), transparent 55%); }
.cinematic-hero__content { position: relative; z-index: 1; width: min(68rem, 88vw); }
.cinematic-hero .editorial-eyebrow { margin: 0 0 clamp(1.5rem, 4vh, 2.5rem); opacity: 0; transform: translateY(1.5rem); animation: editorial-up 1.1s var(--ease-editorial) 1.05s forwards; }
.cinematic-hero h1 { margin: 0 0 clamp(2rem, 5vh, 3.5rem); font-size: clamp(4rem, 11vw, 10rem); line-height: 0.79; }
.cinematic-hero h1 span, .cinematic-hero h1 em { display: block; opacity: 0; transform: translateY(100%); animation: editorial-up 1.3s var(--ease-editorial) forwards; }
.cinematic-hero h1 span { animation-delay: 1.2s; }
.cinematic-hero h1 em { animation-delay: 1.4s; font-weight: 300; }

@keyframes editorial-up { to { opacity: 1; transform: none; } }

.arrow-link { display: inline-flex; align-items: center; gap: 1rem; color: inherit; font-size: 0.67rem; font-weight: 400; letter-spacing: 0.3em; text-decoration: none; text-transform: uppercase; }
.arrow-link > span { position: relative; width: 2.8rem; height: 1px; background: currentColor; transition: width 0.5s var(--ease-editorial); }
.arrow-link > span::after { content: ""; position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-top: 1px solid; border-right: 1px solid; transform: rotate(45deg); }
.arrow-link:hover > span { width: 4.2rem; }
.cinematic-hero .arrow-link { opacity: 0; animation: editorial-up 1.1s var(--ease-editorial) 1.7s forwards; }
.cinematic-hero__scroll, .cinematic-hero__meta { position: absolute; z-index: 1; bottom: 2rem; font-size: 0.58rem; font-weight: 400; letter-spacing: 0.36em; text-transform: uppercase; opacity: 0.65; writing-mode: vertical-rl; }
.cinematic-hero__scroll { left: clamp(1.5rem, 5vw, 4.5rem); display: flex; align-items: center; gap: 0.8rem; }
.cinematic-hero__scroll::after { content: ""; width: 1px; height: 2.4rem; background: currentColor; animation: scroll-pulse 1.8s ease-in-out infinite; }
.cinematic-hero__meta { right: clamp(1.5rem, 5vw, 4.5rem); transform: rotate(180deg); }
@keyframes scroll-pulse { 50% { transform: scaleY(0.35); transform-origin: top; } }

/* Homepage éditoriale */
.editorial-quote { position: relative; padding: clamp(8rem, 17vw, 14rem) clamp(1.5rem, 5vw, 4.5rem); text-align: center; }
.editorial-quote blockquote { max-width: 60rem; margin: 0 auto; color: var(--navy); font: italic 300 clamp(1.9rem, 4vw, 3.35rem)/1.35 var(--serif-display); }
.editorial-num, .editorial-signature { display: block; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.36em; text-transform: uppercase; opacity: 0.48; }
.editorial-num { margin-bottom: 3.8rem; }
.editorial-signature { margin: 3.8rem 0 0; }

.editorial-diptych { display: grid; grid-template-columns: 1fr 1fr; min-height: 92vh; background: var(--navy); }
.editorial-panel { position: relative; min-height: 42rem; overflow: hidden; color: var(--ecru); text-decoration: none; }
.editorial-panel > img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease-editorial); }
.editorial-panel:nth-child(2) > img { object-position: center; }
.editorial-panel__veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgb(5 14 28 / 0.75), transparent 58%); transition: background 0.7s; }
.editorial-panel:hover > img { transform: scale(1.045); }
.editorial-panel__content { position: absolute; right: clamp(1.8rem, 5vw, 4rem); bottom: clamp(2.5rem, 7vw, 4.5rem); left: clamp(1.8rem, 5vw, 4rem); display: flex; flex-direction: column; align-items: flex-start; }
.editorial-panel__content small { margin-bottom: 1rem; font-size: 0.62rem; font-weight: 400; letter-spacing: 0.34em; text-transform: uppercase; }
.editorial-panel__content strong { margin-bottom: 0.7rem; font: italic 300 clamp(2.2rem, 4.5vw, 4.3rem)/1 var(--serif-display); }
.editorial-panel__content > span { max-width: 28rem; font-size: 0.88rem; line-height: 1.75; opacity: 0.84; }

.editorial-collection { padding: clamp(7rem, 14vw, 12rem) clamp(1.5rem, 5vw, 4.5rem); background: var(--beige); }
.editorial-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: var(--largeur-max); margin: 0 auto clamp(4rem, 8vw, 6rem); }
.editorial-section-head .editorial-eyebrow { margin-bottom: 1rem; opacity: 0.58; }
.editorial-section-head h2 { margin: 0; font-style: italic; }
.text-link { display: inline-block; padding-bottom: 0.15rem; border-bottom: 1px solid; color: inherit; font-size: 0.66rem; font-weight: 400; letter-spacing: 0.25em; text-decoration: none; text-transform: uppercase; transition: letter-spacing 0.4s var(--ease-editorial), opacity 0.3s; }
.text-link:hover { letter-spacing: 0.32em; }
.editorial-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3.6rem) clamp(1.4rem, 3vw, 2.5rem); max-width: var(--largeur-max); margin: 0 auto; }
.product-card.look { position: relative; margin: 0; border: 0; background: transparent; }
.product-card > a { display: block; overflow: hidden; }
.product-card__visual { display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--stone); }
.product-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-editorial), filter 0.8s; }
.product-card:hover .product-card__visual img { transform: scale(1.045); }
.product-card figcaption { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.35rem 0 0; }
.product-card figcaption > span:first-child { display: flex; flex-direction: column; }
.product-card small { margin-bottom: 0.35rem; font-size: 0.58rem; font-weight: 400; letter-spacing: 0.27em; opacity: 0.52; text-transform: uppercase; }
.product-card .look__nom { font: italic 400 1.55rem/1.15 var(--serif-display); text-decoration: none; }
.product-card .look__mention { padding-top: 1.7rem; font-size: 0.58rem; }

.editorial-campaign { padding: clamp(7rem, 14vw, 12rem) clamp(1.5rem, 5vw, 4.5rem); background: var(--navy); color: var(--ecru); }
.editorial-campaign__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.85fr); align-items: center; gap: clamp(3.5rem, 9vw, 8rem); max-width: var(--largeur-max); margin: 0 auto; }
.editorial-campaign__visual { position: relative; aspect-ratio: 3 / 4; margin: 0; overflow: hidden; }
.editorial-campaign__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-editorial); }
.editorial-campaign__visual:hover img { transform: scale(1.035); }
.editorial-campaign__visual figcaption { position: absolute; right: 1.5rem; bottom: 1.3rem; left: 1.5rem; color: var(--ecru); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; }
.editorial-campaign__text .editorial-eyebrow { margin-bottom: 1.5rem; opacity: 0.58; }
.editorial-campaign__text h2 { margin-bottom: 2rem; font-style: italic; }
.editorial-campaign__text p:not(.editorial-eyebrow) { max-width: 31rem; margin-bottom: 2.8rem; font-size: 0.92rem; line-height: 1.9; opacity: 0.82; }

.editorial-showroom { position: relative; min-height: 47rem; display: grid; place-items: center; overflow: hidden; padding: 7rem 1.5rem; color: var(--ecru); text-align: center; }
.editorial-showroom > img, .editorial-showroom__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.editorial-showroom > img { object-fit: cover; transform: scale(1.02); }
.editorial-showroom__veil { background: rgb(5 14 28 / 0.65); }
.editorial-showroom > div { position: relative; max-width: 42rem; }
.editorial-showroom .editorial-eyebrow { margin-bottom: 1.5rem; }
.editorial-showroom h2 { margin-bottom: 1.5rem; font-style: italic; }
.editorial-showroom p:not(.editorial-eyebrow) { max-width: 36rem; margin: 0 auto 2.5rem; opacity: 0.86; }

.editorial-world { padding: clamp(7rem, 14vw, 12rem) clamp(1.5rem, 5vw, 4.5rem); background: var(--ecru); }
.editorial-world__head { max-width: 50rem; margin: 0 auto clamp(4.5rem, 9vw, 7rem); text-align: center; }
.editorial-world__head .editorial-eyebrow { margin-bottom: 1.4rem; opacity: 0.5; }
.editorial-world__head h2 { font-style: italic; }
.editorial-world__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4rem); max-width: var(--largeur-max); margin: 0 auto; }
.world-card > a:first-child { color: inherit; text-decoration: none; }
.world-card__visual { display: block; aspect-ratio: 3 / 4; margin-bottom: 1.7rem; overflow: hidden; background: var(--beige); }
.world-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-editorial), filter 0.7s; }
.world-card:hover .world-card__visual img { transform: scale(1.045); filter: saturate(0.82); }
.world-card h3 { margin: 0 0 0.75rem; font-style: italic; }
.world-card p { max-width: 27rem; margin-bottom: 1.2rem; font-size: 0.84rem; line-height: 1.75; opacity: 0.66; }

/* Pages intérieures */
.heros--page {
  position: relative;
  isolation: isolate;
  min-height: clamp(34rem, 72vh, 50rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 8rem 1.5rem clamp(4.5rem, 9vh, 7rem);
  background: var(--navy);
  color: var(--ecru);
}
.heros--page::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--navy); background-position: center; background-size: cover; transform: scale(1.015); }
.heros--page::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgb(5 14 28 / 0.78), rgb(5 14 28 / 0.12) 72%); }
[data-page="collection"] .heros--page::before { background-image: url("../assets/campaign/couverture.jpg"); }
[data-page="maison"] .heros--page::before { background-image: url("../assets/brand/hero.jpg"); }
[data-page="objets"] .heros--page::before { background-image: url("../download/Thelordmind/03_FURNITURE_DESIGN/huston shape/V2/Lord Mind Huston Shape 1-8.png"); }
[data-page="showroom"] .heros--page::before { background-image: url("../assets/brand/adn-interieur.jpg"); }
[data-page="contact"] .heros--page::before { background-image: url("../assets/campaign/campagne-contact.jpg"); }
.heros--page h1 { max-width: 15ch; margin: 0 auto; font-style: italic; text-wrap: balance; }
.heros--page > p:last-child { max-width: 45rem; color: inherit; font-size: 0.88rem; opacity: 0.84; }
.heros--page .manifeste { max-width: 46rem; margin-top: 2rem; padding-top: 1.7rem; font-size: clamp(1rem, 1.7vw, 1.2rem); }

.section { padding: clamp(6.5rem, 11vw, 10rem) 0; }
.section--claire { background: var(--beige); }
.duo { gap: clamp(3rem, 8vw, 8rem); }
.duo__media { overflow: hidden; }
.duo__media img { max-height: none; min-height: 34rem; object-fit: cover; transition: transform 1.25s var(--ease-editorial); }
.duo:hover .duo__media img { transform: scale(1.025); }
.duo__texte { max-width: 34rem; }
.duo__texte h2 { margin-bottom: 1.6rem; font-style: italic; }
.duo__texte p { font-size: 0.91rem; line-height: 1.85; }
.piliers { gap: clamp(2rem, 5vw, 5rem); margin-top: 5rem; }
.pilier { padding-top: 1.8rem; border-color: rgb(10 25 47 / 0.24); text-align: left; }
.pilier h3 { font-size: 2rem; font-style: italic; }
.liste-editoriale li { padding: 1.15rem 0; border-color: rgb(10 25 47 / 0.18); font-size: 0.72rem; letter-spacing: 0.23em; }
.galerie { gap: 1.3rem; }
.galerie img { transition: transform 1.1s var(--ease-editorial), filter 0.7s; }
.galerie figure { overflow: hidden; }
.galerie figure:hover img { transform: scale(1.035); filter: saturate(0.85); }
.looks { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3.2rem 1.7rem; }
.look { border: 0; background: transparent; }
.look > a { overflow: hidden; }
.look img { transition: transform 1.2s var(--ease-editorial); }
.look:hover img { transform: scale(1.035); }
.look figcaption { padding: 1.1rem 0; }
.look__nom { font-style: italic; }
.matieres { gap: 1.5rem; }
.matiere img { aspect-ratio: 4 / 3; }
.matiere figcaption { padding-left: 0; border: 0; font-size: 0.64rem; letter-spacing: 0.3em; }
.filigrane { padding-block: 5rem; background: var(--ecru); }
.filigrane::before { width: 12rem; height: 12rem; opacity: 0.06; }
.bandeau { padding: clamp(7rem, 12vw, 10rem) 1.5rem; }
.bandeau h2 { font-style: italic; }
.club { padding: 6rem 1.5rem; }

.bouton {
  padding: 1.15rem 2rem;
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.29em;
  transition: background 0.5s var(--ease-editorial), color 0.5s var(--ease-editorial), letter-spacing 0.5s var(--ease-editorial);
}
.bouton:hover { letter-spacing: 0.34em; }

.produit { gap: clamp(3rem, 8vw, 7rem); }
.produit-galerie__principale { background: #dedbd6; }
.produit-galerie__principale img { transition: transform 1.2s var(--ease-editorial); }
.produit-galerie__principale:hover img { transform: scale(1.035); }
.produit-info { position: sticky; top: 9rem; }
.produit-info h1 { font-style: italic; }
.produit-fiche { border-color: rgb(10 25 47 / 0.18); }
.produit-fiche li { font-size: 0.77rem; letter-spacing: 0.05em; }

.faq summary { padding-block: 1.55rem; font-size: clamp(1.45rem, 2.5vw, 2rem); font-style: italic; }
.faq details { border-color: rgb(10 25 47 / 0.18); }
.champ input, .champ select, .champ textarea { background: transparent; border: 0; border-bottom: 1px solid rgb(10 25 47 / 0.35); padding-inline: 0; font-family: var(--sans); font-size: 0.92rem; }
.champ label { font-size: 0.62rem; letter-spacing: 0.28em; }

/* Recherche */
.recherche-overlay { z-index: 900; padding: clamp(7rem, 14vh, 10rem) 1.5rem 4rem; background: var(--ecru); }
.recherche-fermer { top: 1.8rem; right: clamp(1.5rem, 5vw, 4.5rem); border: 0; font-size: 0.62rem; letter-spacing: 0.28em; }
.recherche-boite { max-width: 52rem; }
.recherche-boite input[type="search"] { border-color: var(--navy); font: italic 300 clamp(2rem, 5vw, 4rem)/1.2 var(--serif-display); }
.recherche-resultats a { padding-block: 1.4rem; }
.recherche-resultat__titre { font: italic 300 1.65rem/1.2 var(--serif-display); }

/* Footer calé sur la référence */
.pied { padding: clamp(6rem, 11vw, 9rem) 0 2.5rem; background: var(--navy-deep); }
.pied__grille { grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.pied__infolettre { grid-column: 1 / -1; grid-row: 1; max-width: 34rem; margin: 0 auto 4rem; text-align: center; }
.pied__infolettre::before { content: "The Journal."; display: block; margin-bottom: 0.7rem; font: italic 300 2.2rem/1.1 var(--serif-display); }
.pied__infolettre .pied__titre { display: none; }
.pied__infolettre-champ { flex-wrap: nowrap; border-bottom: 1px solid rgb(245 242 235 / 0.3); }
.pied__infolettre-champ input[type="email"] { border: 0; padding-left: 0; }
.pied__infolettre-champ .bouton { border: 0; padding-inline: 0; }
.pied .marque { display: inline-flex; font: italic 300 2rem/1 var(--serif-display); }
.pied__titre { font-size: 0.6rem; letter-spacing: 0.34em; opacity: 0.6; }
.pied__mention { margin-top: 2rem; padding-top: 2rem; border-color: rgb(245 242 235 / 0.1); font-size: 0.62rem; letter-spacing: 0.15em; opacity: 0.62; }

/* Apparitions */
.apparition { transform: translateY(2.5rem); transition: opacity 1.05s var(--ease-editorial), transform 1.05s var(--ease-editorial); }

/* Page d'accès */
body:not([data-page]) .entete,
[data-page="index"] .entete { position: absolute; }
.acces-panneau { padding: clamp(2rem, 5vw, 3.3rem); background: rgb(245 242 235 / 0.94); box-shadow: 0 2rem 6rem rgb(5 14 28 / 0.35); backdrop-filter: blur(12px); }
.acces-panneau h1 { font-style: italic; }

@media (max-width: 1100px) {
  .entete__action--contact { display: none; }
  .nav__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 3.5rem; }
  .looks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .editorial-diptych, .editorial-campaign__grid { grid-template-columns: 1fr; }
  .editorial-diptych { min-height: 0; }
  .editorial-panel { min-height: 75svh; }
  .editorial-products, .editorial-world__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-campaign__visual { width: min(100%, 38rem); }
  .duo__media img { min-height: 28rem; }
  .produit-info { position: static; }
  .pied__grille { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pied__infolettre, .pied__mention { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .entete__barre { padding-block: 1.25rem; }
  .entete__actions { gap: 1rem; }
  .entete__action:not(.entete__action--lang) { display: none; }
  .entete .marque { font-size: 0.72rem; }
  .entete .marque em { font-size: 1.05rem; }
  .burger__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .nav { padding-top: 6.5rem; }
  .nav__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .nav__column > p { margin-bottom: 1rem; }
  .nav__column li { margin-bottom: 0.65rem; }
  .nav__column a { font-size: 1.5rem; }
  .nav__foot { flex-direction: column; margin-top: 3rem; }
  .cinematic-hero { min-height: 40rem; padding-bottom: 6rem; }
  .cinematic-hero__media img { object-position: center; }
  .cinematic-hero h1 { font-size: clamp(3.8rem, 20vw, 6.2rem); line-height: 0.85; }
  .cinematic-hero__meta { display: none; }
  .editorial-quote { padding-block: 7.5rem; }
  .editorial-num { margin-bottom: 2.5rem; }
  .editorial-signature { margin-top: 2.5rem; }
  .editorial-panel { min-height: 68svh; }
  .editorial-products { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: -1.5rem; padding: 0 1.5rem 1rem; }
  .product-card { flex: 0 0 82vw; scroll-snap-align: start; }
  .editorial-section-head { align-items: flex-start; flex-direction: column; }
  .editorial-world__grid { grid-template-columns: 1fr; }
  .world-card__visual { aspect-ratio: 4 / 5; }
  .editorial-showroom { min-height: 42rem; }
  .heros--page { min-height: 34rem; align-items: flex-start; text-align: left; }
  .heros--page h1, .heros--page > p { margin-inline: 0; text-align: left; }
  .section { padding-block: 5.5rem; }
  .duo__media img { min-height: 24rem; }
  .looks { grid-template-columns: 1fr; }
  .pied__grille { grid-template-columns: 1fr; }
  .pied__infolettre, .pied__mention { grid-column: 1; }
  .pied__infolettre-champ { flex-wrap: wrap; }
  .pied__mention { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  .cinematic-hero h1 span, .cinematic-hero h1 em, .cinematic-hero .editorial-eyebrow, .cinematic-hero .arrow-link { opacity: 1; transform: none; animation: none; }
  .cinematic-hero__media img { transform: none !important; }
  .cinematic-hero__scroll::after { animation: none; }
  .editorial-panel > img, .product-card__visual img, .world-card__visual img, .duo__media img { transition: none; }
}
