/* =================================================
   FICHIER STYLE DU SITE
   -------------------------------------------------
   Ce fichier gère tout le design du site.

   ✅ MODIFIABLE (par la cliente / sans risque)
   - Textes : dans le HTML (pas ici)
   - Images : dans le HTML (pas ici)
   - Couleurs principales : variables dans :root
   - Certains espacements : marges/paddings signalés

   ⚠️ NE PAS TOUCHER (risque de casser la mise en page)
   - Reset
   - Grilles (display:grid / flex)
   - nth-child (placement des cartes)
   - Animations (reveal / hover / keyframes)
   - Media queries (responsive)
   ================================================= */

/* =================================================
   RESET (⚠️ ne pas toucher)
   ================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* =================================================
   VARIABLES DU SITE (✅ modifiable)
   👉 Ici vous pouvez changer les couleurs principales
   ================================================= */
:root{
  /* ✅ couleur principale (orange du site) */
  --orange: #e07a45;

  /* ✅ fond translucide de la navbar */
  --nav-bg: rgba(247, 243, 238, 0.92);

  /* ✅ couleur texte principale */
  --text: #111;

  /* ⚠️ police de secours (ne pas toucher si tout marche) */
  --mona: "Mona Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* =================================================
   BASE (⚠️ structure globale)
   ================================================= */
body{
  font-family: "haboro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  background: #f4efe9;
}

/* =================================================
   NAVBAR (⚠️ ne pas toucher)
   👉 Les liens / textes se modifient dans le HTML
   ================================================= */

.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-container{
  width: min(1200px, 92vw);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo image (✅ modifiable : hauteur si besoin) */
.logo{
  display: flex;
  align-items: center;
  text-decoration: none; /* si tu mets le logo en <a> */
}

.logo img{
  height: 52px; /* ✅ ajustable */
  width: auto;
  display: block;
}

/* hover orange + underline animé (⚠️ ne pas toucher) */
.nav-links a{
  text-decoration: none;
  color: #111;
  margin-left: 22px;
  font-size: 14px;
  opacity: .75;
  transition: color .2s ease, opacity .2s ease;
  position: relative;
}

.nav-links a:hover{
  color: var(--orange);
  opacity: 1;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity: .9;
}

.nav-links a:hover::after{
  transform: scaleX(1);
}

/* =================================================
   HERO (⚠️ structure)
   ✅ Image modifiable via ../img/hero.jpeg
   ================================================= */

.hero{
  min-height: 100vh;
  padding-top: 64px;
  position: relative;
  display: grid;
  place-items: center;

  /* ✅ MODIFIABLE : changer l'image hero.jpeg */
  background: url("../img/hero.jpeg") center/cover no-repeat;
}

.hero-signature{
  width: clamp(260px, 35vw, 520px);
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  filter: brightness(1.1);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
}

.hero-content{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 18px;
}

.hero-small{
  color: rgba(255,255,255,.82);
  font-size: 18px;
  margin-bottom: 18px;
  font-family: var(--mona);
  font-weight: 300;
  letter-spacing: 0;
  opacity: .9;
}

.hero h1{
  color: var(--orange);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 400;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.hero-sub{
  color: rgba(255,255,255,.85);
  font-size: 18px;
  margin-bottom: 58px;
  font-family: var(--mona);
  font-weight: 300;
  letter-spacing: 0;
  opacity: .9;
}

.btn{
  display: inline-block;
  padding: 14px 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.75);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: .2s ease;
  background: rgba(255,255,255,.08);
}

.btn:hover{
  background: #fff;
  color: #111;
}

/* indicateur scroll (⚠️ animation) */
.scroll-indicator{
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  width: 18px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator::after{
  content:"";
  display:block;
  width: 4px;
  height: 6px;
  background: rgba(255,255,255,.7);
  border-radius: 99px;
  margin: 6px auto 0;
  animation: wheel 1.2s infinite ease;
}

@keyframes wheel{
  0%{ transform: translateY(0); opacity: .7; }
  70%{ transform: translateY(8px); opacity: .2; }
  100%{ transform: translateY(0); opacity: .7; }
}

/* =================================================
   PANELS (⚠️ structure + hover)
   ✅ Textes se modifient dans le HTML
   ================================================= */

.exigences{
  padding: 90px 0 60px;
  background: #fff;
  text-align: center;
}

.kicker{
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.section-title{
  color: var(--orange);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 400;
  margin-bottom: 34px;
}

.panels{
  width: min(1180px, 92vw);
  margin: 0 auto;
  height: 420px;
  display: flex;
  gap: 6px;
}

.panel{
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: flex 600ms cubic-bezier(.2,.8,.2,1), filter 300ms ease;
  display: block;
}

.panel::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 55%);
  opacity: .85;
}

.panel-text{
  position:absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  text-align: left;

  opacity: 0;
  transform: translateY(10px);
  transition: 320ms ease;
}

.panel-text h3{
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: "haboro", sans-serif;
}

/* Texte panels (Mona, sans medium) */
.panel-text p{
  font-size: 13px;
  line-height: 1.35;
  opacity: .9;
  font-family: var(--mona);
  font-weight: 500;
}

/* effet "panneaux qui s'ouvrent" (⚠️ ne pas toucher) */
.panels:hover .panel{ filter: brightness(.9); }
.panels:hover .panel:hover{
  flex: 3;
  filter: brightness(1);
}
.panels:hover .panel:hover .panel-text{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive (⚠️ ne pas toucher) */
@media (max-width: 900px){
  .panels{
    height: auto;
    flex-direction: column;
  }
  .panel{ height: 220px; }
  .panels:hover .panel:hover{ flex: 1; }
  .panel-text{ opacity: 1; transform: none; }
}

/* =================================================
   COLLECTIONS (HOME)
   -------------------------------------------------
   ✅ modifiable :
   - images (dans le HTML)
   - titres (dans le HTML)
   - texte intro (dans le HTML)
   - espacement général padding de .collections

   ⚠️ ne pas toucher :
   - placement nth-child
   - reveal / hover
   ================================================= */

.collections{
  position: relative;
  padding: 120px 0 170px;

  /* ✅ MODIFIABLE : fond de la section collections */
  background-image: url("../img/fond.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow-x: hidden;
}

.collections-inner{
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* titre gauche / texte droite */
.collections-head{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 90px;
}

.collections-title{
  margin: 0;
  color: var(--orange);
  font-weight: 400;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: 1;
}

/* ✅ comme avant : pas “trop bas” */
.collections-intro{
  padding-top: 10px;
}

.collections-intro p{
  margin: 0 0 10px;
  color: rgba(0,0,0,.60);
  font-size: 14px;
  line-height: 1.65;
  max-width: 54ch;
}

/* ✅ bouton : modifiable (marges / texte en HTML) */
.collections-link{
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(224,122,69,.55);
  border-radius: 999px;
  font-size: 13px;
  color: var(--orange);
  text-decoration: none;

  /* ✅ MODIFIABLE : éloigner le bouton du texte */
  margin-top: 30px;

  position: relative;
  isolation: isolate;
  background: transparent;
  transition: color .2s ease, border-color .2s ease;
}

.collections-link::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: -1;
}

.collections-link:hover{
  color: #fff;
  border-color: var(--orange);
}

.collections-link:hover::before{
  opacity: 1;
}

/* grille moodboard (⚠️ ne pas toucher) */
.collections-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(90px, 10vw, 170px);
  row-gap: clamp(80px, 10vw, 140px);
  align-items: start;
}

/* carte */
.col-card{
  width: 420px;
  max-width: 46vw;
}

/* image default carré */
.col-img{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
}

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

/* méta */
.col-meta{
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
}

.col-meta h3{
  margin: 0;
  color: var(--orange);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
}

.col-meta span{
  color: rgba(0,0,0,.45);
  font-size: 12px;
  white-space: nowrap;
}

/* -------------------------------------------------
   PLACEMENT COMME LA REF (⚠️ NE PAS TOUCHER)
   Si on change ces valeurs, la mise en page se décale.
   ------------------------------------------------- */
.collections-grid .col-card:nth-child(1){ justify-self: start; }

.collections-grid .col-card:nth-child(2){
  justify-self: end;
  margin-top: 240px;
}

/* image 2 portrait */
.collections-grid .col-card:nth-child(2) .col-img{
  aspect-ratio: 3 / 4;
}

.collections-grid .col-card:nth-child(3){ justify-self: start; }

.collections-grid .col-card:nth-child(4){
  justify-self: end;
  margin-top: 120px;
}

.collections-grid .col-card:nth-child(5){
  justify-self: start;
  margin-top: 40px;
}

.collections-grid .col-card:nth-child(6){
  justify-self: end;
  margin-top: 220px;
}

/* mobile (⚠️ ne pas toucher) */
@media (max-width: 900px){
  .collections{
    padding: 90px 0 120px;
  }

  .collections-head{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }

  .collections-intro{
    padding-top: 0;
  }

  .collections-grid{
    grid-template-columns: 1fr;
    row-gap: 44px;
    column-gap: 0;
  }

  .col-card{
    width: min(440px, 92vw);
    max-width: none;
    justify-self: center !important;
    margin-top: 0 !important;
  }

  .collections-grid .col-card:nth-child(2) .col-img{
    aspect-ratio: 1 / 1;
  }
}

/* =================================================
   REVEAL (apparition au scroll) (⚠️ ne pas toucher)
   ================================================= */

.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

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

.collections-grid .reveal:nth-child(1){ transition-delay: 0ms; }
.collections-grid .reveal:nth-child(2){ transition-delay: 90ms; }
.collections-grid .reveal:nth-child(3){ transition-delay: 180ms; }
.collections-grid .reveal:nth-child(4){ transition-delay: 270ms; }
.collections-grid .reveal:nth-child(5){ transition-delay: 360ms; }
.collections-grid .reveal:nth-child(6){ transition-delay: 450ms; }

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

/* =================================================
   HOVER COLLECTIONS HOME (⚠️ effet)
   ================================================= */

.col-card{
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.col-img{
  overflow: hidden;
  position: relative;
}

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

  transform: scale(1.001);
  transition: transform .6s cubic-bezier(.2,.8,.2,1),
              filter .4s ease;
}

/* Overlay très subtil */
.col-img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .4s ease;
}

/* Hover */
.col-card:hover{
  transform: translateY(-6px);
}

.col-card:hover .col-img img{
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}

.col-card:hover .col-img::after{
  background: rgba(0,0,0,.08);
}

/* Underline animé sur le titre */
.col-meta h3{
  position: relative;
  display: inline-block;
}

.col-meta h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  height:1px;
  width:100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .35s ease;
}

.col-card:hover .col-meta h3::after{
  transform: scaleX(1);
}

/* =================================================
   BLOC ORANGE (story)
   ✅ image modifiable dans le HTML
   ⚠️ overlay/position : ne pas toucher
   ================================================= */

.story-band{
  background: var(--orange);
  padding: 110px 0;
}

.story-inner{
  width: min(1180px, 92vw);
  margin: 0 auto;
  position: relative;
}

.story-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}

.story-text{
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
  margin: 0;
  color: #fff;
  font-weight: 400;
  line-height: .95;
  font-size: clamp(44px, 6vw, 92px);
  text-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.story-reveal{
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transform: translateY(12px);
  opacity: 0;
  transition:
    clip-path 1.05s cubic-bezier(.2,.8,.2,1),
    transform 1.05s cubic-bezier(.2,.8,.2,1),
    opacity .6s ease;
  will-change: clip-path, transform, opacity;
}

.story-inner.is-visible .story-reveal{
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 700px){
  .story-band{ padding: 70px 0; }
  .story-text{ font-size: clamp(34px, 8vw, 54px); }
}

@media (prefers-reduced-motion: reduce){
  .story-reveal{
    clip-path: none;
    transform: none;
    opacity: 1;
    transition: none;
  }
}

/* =================================================
   SECTION ARTISTE (portrait)
   ✅ textes/images modifiables dans le HTML
   ⚠️ structure grid/spacing : éviter
   ================================================= */

.artist{
  background: #e9e4df;
  padding: 160px 0;
}

.artist-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 140px;
  align-items: center;
}

.artist-img{
  width: 360px;
  max-width: 42vw;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
}

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

.artist-content{
  padding-left: 100px;
}

.artist-title{
  font-size: clamp(70px, 7vw, 130px);
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 30px;
  line-height: 1;
}

.artist-sub{
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 60px;
  font-family: var(--mona);
  font-weight: 500;
}

.artist-text{
  font-size: 22px;
  line-height: 1.55;
  color: #222;
  max-width: 650px;
}

.artist-title-reveal{
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-18px);
  transition: clip-path 1.1s cubic-bezier(.2,.8,.2,1),
              transform 1.1s cubic-bezier(.2,.8,.2,1);
  will-change: clip-path, transform;
}

.artist-content.is-visible .artist-title-reveal{
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
  transition-delay: 80ms;
}

@media (max-width: 1000px){
  .artist{ padding: 110px 0; }

  .artist-inner{
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
  }

  .artist-content{ padding-left: 0; }

  .artist-img{
    width: min(420px, 92vw);
    max-width: none;
  }

  .artist-title{
    font-size: clamp(48px, 10vw, 80px);
  }

  .artist-text{
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce){
  .artist-title-reveal{
    clip-path: none;
    transform: none;
    transition: none;
  }
}

/* =================================================
   SECTION COMMANDE
   ✅ image fond modifiable (fond.jpg)
   ✅ le “padding-top” du bouton peut être ajusté
   ================================================= */

.order{
  background: var(--orange);
  padding: 160px 0;
}

.order-inner{
  width: min(1100px, 90vw);
  margin: 0 auto;

  /* ✅ MODIFIABLE : image de fond */
  background: url("../img/fond.jpg") center / cover no-repeat;

  padding: 120px 100px;
  border-radius: 4px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* aligné au texte */
}

.order-left{
  max-width: 72%;
}

.order-title{
  font-size: clamp(56px, 5.2vw, 96px);
  font-weight: 400;
  color: var(--orange);
  line-height: 1.05;
  margin: 0 0 34px 0;
  letter-spacing: 0;
  white-space: nowrap;
}

.order-sub{
  font-size: 18px;
  color: var(--orange);
  margin: 0;
  font-family: var(--mona);
  font-weight: 500;
}

.order-right{
  /* ✅ MODIFIABLE : descend/monte le bouton */
  padding-top: 104px;
}

.order-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--orange);
  color: var(--orange);
  text-decoration: none;
  font-size: 14px;

  background: rgba(255,255,255,.15);
  transition: background .2s ease, color .2s ease, transform .2s ease;

  white-space: nowrap;
}

.order-link .arrow{ transition: transform .25s ease; }

.order-link:hover{
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

.order-link:hover .arrow{
  transform: translate(4px,-4px);
}

@media (max-width: 900px){
  .order{ padding: 110px 0; }
  .order-inner{
    padding: 80px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
  }
  .order-title{
    white-space: normal;
    font-size: clamp(44px, 10vw, 72px);
  }
  .order-right{
    padding-top: 0;
  }
}

/* =================================================
   FOOTER
   ✅ textes/liens modifiables dans le HTML
   ⚠️ structure grid : éviter
   ================================================= */

.footer{
  background: #f4efe9;
  padding: 120px 0 70px;
}

.footer-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-email{
  font-size: 28px;
  color: #111;
  margin-bottom: 80px;
}

.footer-ig-label{
  font-size: 18px;
  color: rgba(0,0,0,.75);
  margin-bottom: 16px;
  font-family: var(--mona);
  font-weight: 500;
}

.footer-ig-icon{
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0,0,0,.35);
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #111;
  font-size: 18px;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-ig-icon:hover{
  opacity: .7;
  transform: translateY(-2px);
}

.footer-col-nav{
  display: grid;
  gap: 18px;
  justify-items: start;
}

.footer-col-nav a{
  text-decoration: none;
  color: #111;
  font-size: 20px;
  transition: opacity .2s ease;
}

.footer-col-nav a:hover{ opacity: .65; }

.footer-place{
  font-size: 22px;
  color: #111;
  margin-bottom: 22px;
}

.footer-hours,
.footer-days{
  font-size: 20px;
  color: rgba(0,0,0,.75);
  margin-bottom: 14px;
  font-family: var(--mona);
  font-weight: 500;
}

.footer-line{
  height: 1px;
  background: var(--orange);
  margin: 70px 0 50px;
  opacity: .9;
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-credit{
  color: var(--orange);
  font-size: 10px;
}

.footer-terms{
  color: #111;
  text-decoration: none;
  font-size: 20px;
  transition: opacity .2s ease;
}

.footer-terms:hover{ opacity: .65; }

@media (max-width: 900px){
  .footer{ padding: 80px 0 50px; }
  .footer-top{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-email{ font-size: 22px; margin-bottom: 40px; }
  .footer-bottom{
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =================================================
   ABOUT (page artiste.html)
   ⚠️ grosse mise en page : éviter de toucher
   ================================================= */

.about{
  padding-top: 64px; /* navbar fixed */
}

.about-hero{
  background: var(--cream);
  padding: 34px 0 0;
}

.about-hero-inner{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 26px;
  align-items: stretch; /* important pour que la photo fasse la même hauteur */
}

/* Colonne gauche ORANGE */
.about-hero-left{
  background: var(--orange);
  color: #fff;
  padding: 44px 44px 46px;
  border-radius: 2px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-kicker{
  font-family: var(--mona);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .14em;
  opacity: .85;
  margin-bottom: 22px;
}

.about-kicker.dark{ color: rgba(0,0,0,.65); }

.about-name{
  margin: 0 0 18px;
  font-weight: 400;
  line-height: .95;
  font-size: clamp(44px, 3.6vw, 62px);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.about-mini{
  width: 120px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  margin: 18px 0 18px;
  border: 1px solid rgba(255,255,255,.18);
}

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

.about-meta{
  font-family: var(--mona);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .85;
  margin-bottom: 16px;
}

.about-blurb{
  font-size: 13px;
  line-height: 1.7;
  max-width: 36ch;
  opacity: .92;
  font-family: var(--mona);
  font-weight: 400;
}

/* droite */
.about-hero-right{
  background: transparent;
}

/* ✅ image qui prend TOUTE la place */
.about-hero-photo{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  min-height: 540px;
}

.about-hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  flex: 1;
  filter: saturate(.98) contrast(.98);
}

.about-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to left, rgba(224,122,69,.55), rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.about-hero-title{
  position: absolute;
  top: 38px;
  left: 38px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-weight: 400;
  font-size: clamp(44px, 5.8vw, 92px);
  letter-spacing: .02em;
  text-shadow: 0 12px 26px rgba(0,0,0,.25);
  /* pas de uppercase ici */
}

/* BIO */
.about-bio{
  background: var(--cream);
  padding: 90px 0 0; /* footer arrive direct après */
}

.about-bio-inner{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: start;
  border-top: 1px solid rgba(0,0,0,.18);
  padding-top: 70px;
  padding-bottom: 90px;
}

.about-h2{
  margin: 14px 0 18px;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 64px);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.about-bio-text p{
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.85;
  max-width: 62ch;
  font-family: var(--mona);
}

.about-bio-figs{
  display: grid;
  gap: 18px;
  justify-items: end;
}

.about-fig{
  width: min(260px, 44vw);
}

.about-fig img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
}

.about-fig figcaption{
  margin-top: 10px;
  font-family: var(--mona);
  font-size: 12px;
  color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 980px){
  .about-hero-inner{
    grid-template-columns: 1fr;
  }

  .about-hero-left{
    min-height: auto;
  }

  .about-hero-photo{
    min-height: 420px;
  }
  .about-bio-inner{
      grid-template-columns: 1fr;
    }

    .about-bio-figs{
      justify-items: start;
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px){
    .about-hero-title{
      top: 22px;
      left: 22px;
    }
  }

  /* =================================================
     PAGE COLLECTIONS (collections.html)
     ⚠️ structure : éviter de toucher
     ================================================= */

  .cpage{
    padding-top: 64px; /* navbar fixed */
    background: #f4efe9;
  }

  /* HERO */
  .cpage-hero{
    padding: 90px 0 40px; /* ✅ MODIFIABLE : espace */
  }

  .cpage-hero-inner{
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 40px;
  }

  .cpage-title{
    margin: 0;
    font-weight: 400;
    color:var(--orange);
    font-size: clamp(54px, 6vw, 92px);
    line-height: .95;
  }

  /* petit carré image à droite */
  .cpage-hero-thumb{
    width: 170px;
    aspect-ratio: 1 / 1;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.25);
    box-shadow: 0 18px 55px rgba(0,0,0,.10);
  }

  .cpage-hero-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* GRID */
  .cpage-grid-wrap{
    padding: 80px 0 120px;
  }

  .cpage-grid{
    width: min(1200px, 92vw);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  /* item */
  .citem{
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform .25s ease;
  }

  .citem-img{
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.25);
    box-shadow: 0 18px 55px rgba(0,0,0,.10);
    aspect-ratio: 3 / 2;
    position: relative;
  }

  .citem-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transform: scale(1.001);
    transition: transform .55s cubic-bezier(.2,.8,.2,1),
                filter .35s ease;
    will-change: transform;
  }

  /* meta ligne sous l'image */
  .citem-meta{
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
  }

  .citem-title{
    margin: 0;
    color: var(--orange);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.15;
    position: relative;
  }

  .citem-title::after{
    content:"";
    position:absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 100%;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    opacity: .85;
  }

  .citem-tag{
    font-family: var(--mona);
    font-size: 12px;
    color: rgba(0,0,0,.45);
    white-space: nowrap;
  }

  /* HOVER */
  .citem:hover .citem-img img{
    transform: scale(1.06);
    filter: saturate(1.03) contrast(1.02);
  }

  .citem:hover .citem-title::after{
    transform: scaleX(1);
  }

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

  /* Responsive */
  @media (max-width: 900px){
    .cpage-hero-inner{
      grid-template-columns: 1fr;
    }

    .cpage-hero-thumb{
      width: 140px;
    }

    .cpage-grid{
      grid-template-columns: 1fr;
      gap: 40px;
    }

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

/* =================================================
   PAGE GALERIE (ex: vaisselle.html)
   ⚠️ structure : éviter
   ================================================= */

.gpage{
  padding-top: 64px; /* navbar fixed */
  background: #f4efe9;
}

.gpage-hero{
  padding: 90px 0 30px;
}

.gpage-hero-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.gpage-kicker{
  font-family: var(--mona);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin: 0 0 16px;
}

.gpage-title{
  margin: 0;
  font-weight: 400;
  color: var(--orange);
  font-size: clamp(54px, 6vw, 92px);
  line-height: .95;
}

.gpage-intro{
  margin: 18px 0 22px;
  color: rgba(0,0,0,.60);
  font-size: 14px;
  line-height: 1.75;
  max-width: 60ch;
  font-family: var(--mona);
}

.gpage-back{
  display: inline-block;
  color: #111;
  opacity: .75;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  transition: opacity .2s ease, color .2s ease;
}

.gpage-back:hover{
  opacity: 1;
  color: var(--orange);
}

.gpage-hero-thumb{
  width: 170px;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.25);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
}

.gpage-hero-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Galerie */
.gpage-wrap{
  padding: 70px 0 130px;
}

.ggrid{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 60px;
  align-items: start;
}

.gcard{
  display: grid;
  gap: 18px;
}

.gimg{
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.25);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
  aspect-ratio: 3 / 2;
}

.gimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}

.gcard:hover .gimg img{
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.02);
}

.gmeta h2{
  margin: 0 0 8px;
  font-weight: 400;
  color: var(--orange);
  font-size: 26px;
  line-height: 1.15;
}

.gmeta p{
  margin: 0;
  color: rgba(0,0,0,.60);
  font-size: 14px;
  line-height: 1.75;
  font-family: var(--mona);
}

/* Responsive */
@media (max-width: 900px){
  .gpage-hero-inner{
    grid-template-columns: 1fr;
  }
  .ggrid{
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .gpage-hero-thumb{
    width: 140px;
  }
  .gimg{
    aspect-ratio: 4 / 3;
  }
}

/* =================================================
   PAGE CONTACT (contact.html)
   ✅ textes/champs modifiables dans le HTML
   ⚠️ classes CSS : ne pas renommer
   ================================================= */

.ctpage{
  padding-top: 64px; /* navbar fixed */
  background: #f4efe9;
}

/* Hero */
.ct-hero{
  padding: 90px 0 30px;
}

.ct-hero-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.ct-kicker{
  font-family: var(--mona);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin: 0 0 16px;
}

.ct-title{
  margin: 0;
  font-weight: 400;
  color: var(--orange);
  font-size: clamp(54px, 6vw, 92px);
  line-height: .95;
}

.ct-intro{
  margin: 18px 0 0;
  color: rgba(0,0,0,.60);
  font-size: 14px;
  line-height: 1.75;
  max-width: 62ch;
  font-family: var(--mona);
}

.ct-hero-thumb{
  width: 170px;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.25);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
}

.ct-hero-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Layout */
.ct-wrap{
  padding: 70px 0 130px;
}

.ct-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.ct-card{
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 55px rgba(0,0,0,.06);
  border-radius: 4px;
  padding: 28px;
}

.ct-card h2{
  margin: 0 0 18px;
  font-weight: 400;
  color: #111;
  font-size: 22px;
}

.ct-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.ct-row:first-of-type{
  border-top: none;
  padding-top: 0;
}

.ct-label{
  font-family: var(--mona);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
}

.ct-value{
  color: #111;
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}

a.ct-value:hover{
  opacity: 1;
  color: var(--orange);
}

.ct-note{
  margin: 18px 0 0;
  font-family: var(--mona);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0,0,0,.60);
}

/* Form */
.ct-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-field{
  display: grid;
  gap: 8px;
}

.ct-field-full{
  grid-column: 1 / -1;
}

.ct-field span{
  font-family: var(--mona);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
}

.ct-field input,
.ct-field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  border-radius: 4px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: var(--mona);
  color: #111;
}

.ct-field input:focus,
.ct-field textarea:focus{
  border-color: rgba(224,122,69,.65);
  box-shadow: 0 0 0 3px rgba(224,122,69,.18);
}

.ct-btn{
  grid-column: 1 / -1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(224,122,69,.55);
  background: transparent;
  color: var(--orange);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  cursor: pointer;

  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.ct-btn:hover{
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.ct-small{
  margin: 14px 0 0;
  font-family: var(--mona);
  font-size: 12px;
  color: rgba(0,0,0,.55);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px){
  .ct-hero-inner{
    grid-template-columns: 1fr;
  }
  .ct-hero-thumb{
    width: 140px;
  }
  .ct-inner{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ct-form-grid{
    grid-template-columns: 1fr;
  }
}

/* =================================================
   VIDEO STUDIO
   ✅ marges modifiables
   ================================================= */

.studio-video{
  width: calc(100% - 30px);
  margin: 0px auto 120px;
}

.studio-caption{
  font-size: 12px;
  font-family: var(--mona);
  margin-left: 15px;
  margin-bottom: 10px;
}

.studio-video video{
  width: 100%;
  height: auto;
  display: block;
}

/* LANGUAGE SWITCH (bas gauche, vertical) */
.lang-switch{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 8px;

  padding: 10px 10px;
  border-radius: 6px;
  background: rgba(244,239,233,.55);
  border: 1px solid rgba(0,0,0,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-switch a{
  font-family: var(--mona);
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  color: #111;
  opacity: .55;
  transition: opacity .2s ease, color .2s ease;
}

.lang-switch a:hover{
  opacity: 1;
  color: var(--orange);
}

.lang-switch a.is-active{
  opacity: 1;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
