@import url('https://fonts.googleapis.com/css2?family=Allura&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --bg: #f7e6d8;
  --paper: #f9efe6;
  --text: #2b201a;
  --muted: rgba(43,32,26,.70);

  --accent: #d28358;
  --accentDark: #b66a44;
  --line: rgba(43,32,26,.12);

  --radius: 22px;
  --shadow: 0 18px 40px rgba(43,32,26,.10);

  --space-1: clamp(10px, 1.2vw, 14px);
  --space-2: clamp(14px, 2vw, 22px);
  --space-3: clamp(18px, 3vw, 34px);
  --space-4: clamp(22px, 4vw, 44px);
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(1100px, 92%); margin: 0 auto; }

/* HEADER */
.header{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247,230,216,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: var(--space-1) 0;
  gap: 12px;
}
.brand__name{
  font-family: Allura, cursive;
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--accentDark);
  white-space: nowrap;
}

.nav{ display:flex; gap: 10px; align-items:center; flex-wrap: wrap; }
.nav a{
  font-size: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  white-space: nowrap;
}
.nav a:hover{
  border-color: rgba(210,131,88,.35);
  background: rgba(255,255,255,.35);
  color: var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(210,131,88,.55);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(210,131,88,.22);
}
.btn--ghost{
  background: transparent;
  color: var(--accentDark);
}
.btn--light{
  background: #fff;
  color: var(--accentDark);
  border-color: rgba(255,255,255,.7);
  box-shadow: none;
}

/* Burger / mobile */
.burger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(210,131,88,.35);
  background: rgba(255,255,255,.35);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex: 0 0 auto;
}
.burger__line{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accentDark);
  border-radius: 999px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav--desktop{ display:flex; }

.mobileMenu{
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 86vw);
  height: 100vh;
  background: rgba(249,239,230,.92);
  backdrop-filter: blur(10px);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 44px rgba(43,32,26,.14);
  transform: translateX(110%);
  transition: transform .28s ease;
  z-index: 200;
}
.mobileMenu__nav{
  padding: 78px 18px 18px;
  display: grid;
  gap: 10px;
}
.mobileMenu__nav a{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(43,32,26,.08);
  background: rgba(255,255,255,.35);
  color: var(--text);
}
.mobileMenu__cta{ width: 100%; }

.overlay{
  display:none;
  position: fixed;
  inset: 0;
  background: rgba(43,32,26,.25);
  border: 0;
  z-index: 150;
}

body.menu-open .mobileMenu{ display:block; transform: translateX(0); }
body.menu-open .overlay{ display:block; }
body.menu-open .burger__line:nth-child(1){ transform: translateY(7px) rotate(45deg); }
body.menu-open .burger__line:nth-child(2){ opacity: 0; }
body.menu-open .burger__line:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* TITRES */
.h2{
  margin: 0 0 14px;
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 700;
  color: rgba(210,131,88,.95);
  letter-spacing: .2px;
}
.h2--shadow{
  text-shadow: 0 4px 0 rgba(0,0,0,.10);
}

/* SECTIONS */
.section{
  padding: clamp(56px, 8vw, 96px) 0;
}
.section--soft{ background: rgba(249,239,230,.58); }

/* HERO IMAGE */
.heroBanner{ padding: var(--space-2) 0 6px; }
.heroBanner__wrap{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(43,32,26,.10);
  border: 1px solid rgba(210,131,88,.18);
}
.heroBanner__img{
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
}

/* ABOUT */
.aboutBlock{
  display: grid;
  grid-template-columns: 1fr minmax(220px, 380px);
  gap: var(--space-2);
  align-items: start;
}
.aboutBlock__media{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(43,32,26,.12);
  border: 1px solid rgba(43,32,26,.12);
  background: rgba(255,255,255,.25);
}
.aboutBlock__media img{
  width: 100%;
  display:block;
  object-fit: cover;
}
.aboutBlock__text{ padding-top: 6px; }
.aboutBlock__p{
  margin: 0 0 14px;
  color: #6a5a3d;
  font-size: clamp(16px, 1.8vw, 22px);
}
.aboutBlock{
  align-items: center;
}

.aboutBlock__text{
  max-width: 520px;
}

.quote{
  margin: 22px 0 26px;
  padding: 18px 22px;
  border-left: 3px solid rgba(210,131,88,.55);
  background: rgba(255,255,255,.35);
  border-radius: 14px;
  color: rgba(43,32,26,.68);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
}


/* ✅ Phrase en une seule ligne (et taille fluide pour tenir sur mobile) */
.signature{
  margin: 18px 0 18px;
  font-family: Allura, cursive;
  font-size: clamp(22px, 5.4vw, 34px);
  color: #7a6a4c;
  white-space: nowrap;
  letter-spacing: .3px;
}


.ctaRow{ display:flex; gap: 12px; flex-wrap: wrap; }

/* EXPERTISE VISUAL */
/* ✅ Plus petit sur ordinateur (centré), mais “plein” sur mobile */
.expertiseGrid__visual{
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(210,131,88,.18);
  box-shadow: 0 18px 44px rgba(43,32,26,.10);
  max-width: 820px;
}
.expertiseGrid__visual img{
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
}
#expertise .h2{
  text-align: center;
  margin-bottom: 28px;
}


/* PROCESS */
.processSteps{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.step{
  background: rgba(255,255,255,.24);
  border: 1px solid rgba(43,32,26,.10);
  border-radius: 18px;
  padding: 16px;
  min-height: 170px;
}
.step__n{
  font-size: clamp(44px, 4vw, 54px);
  font-weight: 800;
  color: rgba(210,131,88,.70);
  text-shadow: 0 4px 0 rgba(0,0,0,.08);
  line-height: 1;
}
.step__t{
  margin-top: 6px;
  font-weight: 700;
  color: #6a5a3d;
}
.step__p{
  margin-top: 8px;
  color: rgba(43,32,26,.68);
  font-size: 14px;
}

/* CTA BAND */
.ctaBand{
  background: #d28358;
  padding: var(--space-3) 0;
}
.ctaBand__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.ctaBand__title{
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  text-shadow: 0 4px 0 rgba(0,0,0,.14);
}

/* FOOTER */
.footer{
  border-top: 1px solid rgba(43,32,26,.12);
  padding: var(--space-2) 0;
  color: rgba(43,32,26,.70);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__title{
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .8;
}
.footer__link{
  display:inline-block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(43,32,26,.12);
  background: rgba(255,255,255,.25);
}
.footer__link:hover{ border-color: rgba(210,131,88,.35); }

/* SUBFOOTER */
.subfooter{
  padding: 12px 0 18px;
  background: rgba(255,255,255,.10);
}
.subfooter__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(43,32,26,.10);
  padding-top: 12px;
}
.subfooter__copy{
  margin: 0;
  color: rgba(43,32,26,.65);
  font-size: 13px;
}
.subfooter__links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.subfooter__links a{
  font-size: 13px;
  color: rgba(43,32,26,.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.subfooter__links a:hover{
  color: rgba(210,131,88,.95);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .nav--desktop{ display:none; }
  .burger{ display:inline-flex; }
  .step{
  padding: 18px 20px;
}
/* ❌ Masquer image2 sur tablette & smartphone */
.aboutBlock__media{
  display: none;
}


.step__n{
  margin-bottom: 6px;
}

.step__t{
  font-size: 16px;
}


  /* image2 plus petite sur smartphone/tablette */
  .aboutBlock{ grid-template-columns: 1fr; }
  .aboutBlock__media{
    max-width: 280px;
    justify-self: center;
  }

  /* image3 reprend pleine largeur sur mobile */
  .expertiseGrid__visual{
    max-width: none;
  }

  .processSteps{ grid-template-columns: 1fr; }
  .step{ min-height: auto; }

  .ctaRow .btn{ width: 100%; justify-content: center; }
}

@media (max-width: 480px){
  /* image2 encore un peu plus petite sur très petit écran */
  .aboutBlock__media{ max-width: 220px; }

  .footer__inner{ flex-direction: column; }
  .footer__link{ width: 100%; }
  .ctaBand__inner .btn{ width: 100%; justify-content: center; }
}
.section{
  scroll-margin-top: 90px;
}
/* ================= CONTACT ================= */

.contactSection{
  padding: clamp(40px, 6vw, 80px) 0;
  background: linear-gradient(
    to bottom,
    rgba(249,239,230,.7),
    rgba(247,230,216,.9)
  );
}

.contactCenter{
  max-width: 520px;
  text-align: center;
}

.contactTitle{
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--accentDark);
}

.contactIntro{
  margin: 0 0 32px;
  color: rgba(43,32,26,.7);
}

.contactForm{
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
  border-radius: 26px;
  padding: 32px 28px;
  box-shadow: 0 30px 60px rgba(43,32,26,.12);
  border: 1px solid rgba(43,32,26,.12);
  text-align: left;
}

.field{
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.field label{
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(43,32,26,.7);
}

.field input,
.field textarea,
.field select{
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(43,32,26,.18);
  background: rgba(255,255,255,.7);
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(210,131,88,.18);
}

.btn--contact{
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  font-size: 15px;
}

.formStatus{
  margin-top: 14px;
  font-size: 13px;
  color: rgba(43,32,26,.7);
  text-align: center;
}
/* ================= PAGES INTERNES (UGC / GRAPHISME / RS / EVENT) ================= */

.pageHero{
  padding: clamp(32px, 5vw, 70px) 0;
  background: rgba(249,239,230,.58);
  border-bottom: 1px solid rgba(43,32,26,.10);
}

.pageHero__title{
  margin: 0 0 10px;
  font-size: clamp(34px, 4.6vw, 52px);
  color: rgba(210,131,88,.95);
  text-shadow: 0 4px 0 rgba(0,0,0,.10);
}

.pageHero__lead{
  margin: 0;
  max-width: 70ch;
  color: rgba(43,32,26,.70);
  font-size: clamp(15px, 1.7vw, 18px);
}

.filters{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(43,32,26,.12);
  background: rgba(255,255,255,.25);
  color: rgba(43,32,26,.75);
  font-size: 13px;
}

.pill:hover{
  border-color: rgba(210,131,88,.35);
}

.grid{
  padding: clamp(26px, 4vw, 50px) 0;
}

.cardsGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workCard{
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(43,32,26,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(43,32,26,.06);
}

.workCard__media{
  aspect-ratio: 16/9;
  background: rgba(210,131,88,.12);
}

.workCard__media img,
.workCard__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workCard__body{
  padding: 14px 14px 16px;
}

.workCard__title{
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--accentDark);
}

.workCard__desc{
  margin: 0;
  color: rgba(43,32,26,.70);
  font-size: 13px;
}

.workCard__tags{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(43,32,26,.12);
  background: rgba(255,255,255,.25);
  color: rgba(43,32,26,.70);
}

@media (max-width: 980px){
  .cardsGrid{ grid-template-columns: 1fr; }
}
/* ================= EVENEMENTIEL (PROJETS) + LIGHTBOX ================= */

.workCard__link{
  display: block;
  color: inherit;
}

.projectSection{
  padding: clamp(56px, 8vw, 96px) 0;
}

.projectSection--soft{
  background: rgba(249,239,230,.58);
  border-top: 1px solid rgba(43,32,26,.08);
  border-bottom: 1px solid rgba(43,32,26,.08);
}

.project{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
}

.project__text{
  max-width: 62ch;
}

.project__lead{
  margin: 10px 0 12px;
  color: rgba(43,32,26,.72);
  font-size: clamp(15px, 1.7vw, 18px);
}

.project__mission{
  margin: 0 0 14px;
  color: rgba(43,32,26,.72);
}

.project__list{
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(43,32,26,.70);
}

.project__list li{
  margin: 8px 0;
}

/* Galerie */
.project__gallery{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 14px;
  align-items: stretch;
}

/* cas 2 images */
.project__gallery--two .shot--a{
  grid-row: span 1;
  min-height: 240px;
}

/* ✅ PNG sans fond = pas de cadre visible */
.shot{
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  cursor: zoom-in;
  display: block;
}

/* ✅ “flottant” + léger focus */
.shot img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 18px 24px rgba(43,32,26,.18));
  transition: transform .18s ease, filter .18s ease;
}

.shot:hover img{
  transform: translateY(-2px);
  filter: drop-shadow(0 22px 34px rgba(43,32,26,.22));
}

/* Mise en avant du visuel principal */
.shot--a{
  grid-column: 1 / -1;
  grid-row: span 2;
  min-height: 420px;
}

/* ================= LIGHTBOX ================= */

.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.62);
  z-index: 999;
  padding: 18px;
}

.lightbox.is-open{
  display: grid;
}

.lightbox__img{
  max-width: min(980px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  filter: drop-shadow(0 22px 60px rgba(0,0,0,.55));
}

.lightbox__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover{
  background: rgba(255,255,255,.26);
}

@media (max-width: 980px){
  .project{
    grid-template-columns: 1fr;
  }
  .project__gallery{
    grid-auto-rows: 170px;
  }
  .shot--a{
    min-height: 320px;
  }
}

@media (max-width: 480px){
  .project__gallery{
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .shot--a{
    min-height: 280px;
  }
}
/* =========================
   ÉVÉNEMENTIEL — ALBUM
========================= */

.project--album{
  align-items: start;
}

.album{
  width: 100%;
}

/* Viewport & track */
.album__viewport{
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(43,32,26,.10);
}

.album__track{
  display: flex;
  width: 100%;
  transition: transform .35s ease;
}

.album__slide{
  flex: 0 0 100%;
  margin: 0;
  padding: 14px;
}

.album__imgBtn{
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.album__imgBtn img{
  width: 100%;
  height: clamp(260px, 45vw, 440px);
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.album__cap{
  margin-top: 10px;
  font-size: 14px;
  opacity: .75;
}

/* Controls */
.album__controls{
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.album__btn{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.album__btn:hover{
  background: rgba(255,255,255,.75);
}

.album__dots{
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: transparent;
  cursor: pointer;
}

.dot.is-active{
  background: rgba(210,125,85,.85);
  border-color: rgba(210,125,85,.85);
}

/* =========================
   PNG SHOWCASE (sans fond)
========================= */

.pngShowcase{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.pngItem{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.pngItem img{
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
  background: transparent;
  filter: drop-shadow(0 22px 30px rgba(43,32,26,.22));
  transition: transform .18s ease, filter .18s ease;
}

.pngItem:hover img{
  transform: translateY(-2px);
  filter: drop-shadow(0 28px 42px rgba(43,32,26,.28));
}

.pngItem--tall img{ height: 320px; }
.pngItem--center img{ height: 290px; }

/* Responsive */
@media (max-width: 980px){
  .project--album{
    display: block;
  }
  .pngShowcase{
    grid-template-columns: 1fr;
  }
  .pngItem img{
    height: 280px;
  }
  .pngItem--tall img,
  .pngItem--center img{
    height: 300px;
  }
}

/* =========================
   LIGHTBOX
========================= */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  place-items: center;
  z-index: 9999;
  padding: 18px;
}

.lightbox.is-open{
  display: grid;
}

.lightbox__img{
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.lightbox__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
/* =========================
   ÉVÉNEMENTIEL — LAYOUT
========================= */

/* Desktop: texte + album (max moitié) */
.project--twoCol{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 34px;
  align-items: start;
}

/* L’album ne dépasse pas la moitié */
.album--half{
  max-width: 520px;
  width: 100%;
  justify-self: end;
}

/* Mobile: texte full width + album en dessous */
@media (max-width: 980px){
  .project--twoCol{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .album--half{
    max-width: 100%;
    justify-self: stretch;
  }
}

/* Séparateur entre projets */
.projectDivider{
  height: 1px;
  margin: 38px auto;
  background: linear-gradient(90deg,
    rgba(210,125,85,0),
    rgba(210,125,85,.65),
    rgba(210,125,85,0)
  );
  border-radius: 999px;
}

/* =========================
   ALBUM (carousel) — proportions conservées
========================= */

.album{
  width: 100%;
}

.album__viewport{
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(43,32,26,.10);
}

.album__track{
  display: flex;
  width: 100%;
  transition: transform .35s ease;
}

.album__slide{
  flex: 0 0 100%;
  margin: 0;
  padding: 14px;
}

.album__imgBtn{
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

/* ✅ Ici: pas de recadrage, on garde les dimensions / proportions */
.album__imgBtn img{
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: contain; /* IMPORTANT */
  display: block;
  border-radius: 16px;
  background: rgba(255,255,255,.22); /* léger fond pour mieux voir les images claires */
}

.album__cap{
  margin-top: 10px;
  font-size: 14px;
  opacity: .75;
}

/* Controls */
.album__controls{
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.album__btn{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.album__btn:hover{
  background: rgba(255,255,255,.75);
}

.album__dots{
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: transparent;
  cursor: pointer;
}

.dot.is-active{
  background: rgba(210,125,85,.85);
  border-color: rgba(210,125,85,.85);
}

/* =========================
   PNG SHOWCASE (sans fond)
========================= */

.pngShowcase{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.pngItem{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.pngItem img{
  width: 100%;
  height: 230px;
  object-fit: contain;
  display: block;
  background: transparent;
  filter: drop-shadow(0 22px 30px rgba(43,32,26,.22));
  transition: transform .18s ease, filter .18s ease;
}

.pngItem:hover img{
  transform: translateY(-2px);
  filter: drop-shadow(0 28px 42px rgba(43,32,26,.28));
}

.pngItem--tall img{ height: 300px; }
.pngItem--center img{ height: 270px; }

/* Responsive PNG: en colonne */
@media (max-width: 980px){
  .pngShowcase{
    grid-template-columns: 1fr;
  }
  .pngItem img{
    height: 290px;
  }
  .pngItem--tall img,
  .pngItem--center img{
    height: 310px;
  }
}

/* =========================
   LIGHTBOX
========================= */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  place-items: center;
  z-index: 9999;
  padding: 18px;
}

.lightbox.is-open{
  display: grid;
}

.lightbox__img{
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.lightbox__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
/* =========================
   ÉVÉNÉMENTIEL — FIX LARGEUR ALBUM + SÉPARATEUR
   (version renforcée)
========================= */

/* Forcer une grille stable sur desktop */
.project.project--twoCol{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 520px !important;
  gap: 34px !important;
  align-items: start !important;
}

/* Empêcher la colonne droite de s’étaler */
.albumWrap{
  width: 520px !important;
  max-width: 520px !important;
  justify-self: end !important;
}

/* L’album ne dépasse jamais */
.album.album--half{
  width: 100% !important;
  max-width: 520px !important;
}

/* Mobile/tablette : texte puis album en dessous */
@media (max-width: 980px){
  .project.project--twoCol{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .albumWrap{
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
  }
  .album.album--half{
    max-width: 100% !important;
  }
}

/* Séparateur entre projets (HR) */
.projectDivider{
  border: 0 !important;
  height: 1px !important;
  margin: 40px 0 !important;
  background: linear-gradient(90deg,
    rgba(210,125,85,0),
    rgba(210,125,85,.70),
    rgba(210,125,85,0)
  ) !important;
}

/* =========================
   ALBUM (carousel)
========================= */
.album__viewport{
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.35) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: 0 18px 40px rgba(43,32,26,.10) !important;
}

.album__track{
  display: flex !important;
  width: 100% !important;
  transition: transform .35s ease !important;
}

.album__slide{
  flex: 0 0 100% !important;
  margin: 0 !important;
  padding: 14px !important;
}

.album__imgBtn{
  width: 100% !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  cursor: zoom-in !important;
}

/* ✅ proportions conservées */
.album__imgBtn img{
  width: 100% !important;
  height: 360px !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.18) !important;
}

/* Sur petits écrans : un peu plus haut */
@media (max-width: 980px){
  .album__imgBtn img{
    height: 360px !important;
  }
}

.album__controls{
  display: grid !important;
  grid-template-columns: 48px 1fr 48px !important;
  gap: 10px !important;
  align-items: center !important;
  margin-top: 14px !important;
}

.album__btn{
  width: 48px !important;
  height: 48px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  background: rgba(255,255,255,.55) !important;
  cursor: pointer !important;
  font-size: 26px !important;
  line-height: 1 !important;
}

.album__dots{
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
}

.dot{
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0,0,0,.18) !important;
  background: transparent !important;
  cursor: pointer !important;
}

.dot.is-active{
  background: rgba(210,125,85,.85) !important;
  border-color: rgba(210,125,85,.85) !important;
}

/* =========================
   PNG sans fond : mise en avant
========================= */
.pngShowcase{
  margin-top: 22px !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: end !important;
}

.pngItem{
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  cursor: zoom-in !important;
}

.pngItem img{
  width: 100% !important;
  height: 230px !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
  filter: drop-shadow(0 22px 30px rgba(43,32,26,.22)) !important;
  transition: transform .18s ease, filter .18s ease !important;
}

.pngItem:hover img{
  transform: translateY(-2px) !important;
  filter: drop-shadow(0 28px 42px rgba(43,32,26,.28)) !important;
}

.pngItem--tall img{ height: 300px !important; }
.pngItem--center img{ height: 270px !important; }

@media (max-width: 980px){
  .pngShowcase{
    grid-template-columns: 1fr !important;
  }
  .pngItem img{
    height: 310px !important;
  }
}
/* =========================
   ALBUM PORTRAIT + TITRES CENTRÉS (FORCÉ)
========================= */

/* Desktop: texte + album portrait (plus étroit) */
.project.project--twoCol{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 420px !important; /* 👈 album plus étroit */
  gap: 34px !important;
  align-items: start !important;
}

/* Colonne droite = largeur portrait */
.albumWrap{
  width: 420px !important;
  max-width: 420px !important;
  justify-self: end !important;
}

.album.album--half{
  width: 100% !important;
  max-width: 420px !important;
}

/* Mobile/tablette : texte full width puis album en dessous full width */
@media (max-width: 980px){
  .project.project--twoCol{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .albumWrap{
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
  }

  .album.album--half{
    max-width: 100% !important;
  }
}

/* Album : cadre portrait + image sans recadrage */
.album__viewport{
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.35) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: 0 18px 40px rgba(43,32,26,.10) !important;
}

.album__track{
  display: flex !important;
  width: 100% !important;
  transition: transform .35s ease !important;
}

.album__slide{
  flex: 0 0 100% !important;
  margin: 0 !important;
  padding: 14px !important;
  text-align: center !important; /* 👈 captions centrés */
}

.album__imgBtn{
  width: 100% !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  cursor: zoom-in !important;
}

/* ✅ FORMAT PORTRAIT (cadre plus haut) */
.album__imgBtn img{
  width: 100% !important;
  height: 520px !important;      /* 👈 plus haut = impression portrait */
  object-fit: contain !important; /* pas de recadrage */
  display: block !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.18) !important;
}

/* Mobile : plus haut pour le confort (mais pas énorme) */
@media (max-width: 980px){
  .album__imgBtn img{
    height: 560px !important;
  }
}
@media (max-width: 480px){
  .album__imgBtn img{
    height: 480px !important;
  }
}

/* ✅ TITRE sous photo : centré */
.album__cap{
  margin-top: 10px !important;
  font-size: 14px !important;
  opacity: .75 !important;
  text-align: center !important;
}

/* Controls identiques */
.album__controls{
  display: grid !important;
  grid-template-columns: 48px 1fr 48px !important;
  gap: 10px !important;
  align-items: center !important;
  margin-top: 14px !important;
}

.album__btn{
  width: 48px !important;
  height: 48px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  background: rgba(255,255,255,.55) !important;
  cursor: pointer !important;
  font-size: 26px !important;
  line-height: 1 !important;
}

.album__dots{
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
}

/* points */
.dot{
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0,0,0,.18) !important;
  background: transparent !important;
  cursor: pointer !important;
}
.dot.is-active{
  background: rgba(210,125,85,.85) !important;
  border-color: rgba(210,125,85,.85) !important;
}
/* =========================
   PNG DÉCOUPÉS DANS LE TEXTE
========================= */

.pngRow{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}

.pngItem{
  width: 100%;
  height: auto;
  display: block;

  /* ✅ pas de cadre / pas de fond */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;

  /* ✅ effet “découpe” (sans contour) */
  filter: drop-shadow(0 18px 26px rgba(43,32,26,.18));
  transform: translateY(0);
  transition: transform .2s ease;
}

.pngItem:hover{
  transform: translateY(-4px);
}

/* Mobile/tablette : toujours 3 côte à côte, mais plus petits */
@media (max-width: 980px){
  .pngRow{
    gap: 12px;
  }
  .pngItem{
    filter: drop-shadow(0 14px 20px rgba(43,32,26,.18));
  }
}

/* Très petit écran : on garde 3 colonnes, mais on réduit encore */
@media (max-width: 420px){
  .pngRow{
    gap: 8px;
  }
}
/* =========================
   UGC — PAGE (maquette)
========================= */

.ugcIntro{
  padding: clamp(56px, 7vw, 88px) 0;
  background: rgba(249,239,230,.58);
  border-bottom: 1px solid rgba(43,32,26,.10);
}
.ugcIntro__inner{
  max-width: none;
}

@media (max-width: 480px){
  .ugcIntro__title{
    font-size: 52px; /* ou laisse ton clamp si tu préfères */
  }
}


.ugcIntro__title{
  margin: 0 0 18px;
  font-size: clamp(54px, 7vw, 78px);
  font-weight: 800;
  color: rgba(210,131,88,.95);
  text-shadow: 0 6px 0 rgba(0,0,0,.10);
  letter-spacing: .5px;
}

.ugcIntro__tagline{
  margin: 0 0 26px;
  font-family: Allura, cursive;
  font-size: clamp(22px, 3vw, 30px);
  color: rgba(180,106,68,.85);
}

.ugcIntro__p{
  margin: 0 0 16px;
  color: rgba(43,32,26,.70);
  font-size: 16px;
}

.ugcIntro__underline{
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  color: rgba(43,32,26,.75);
}

/* =========================
   UGC — EXEMPLES + ALBUM
========================= */

.ugcExamples{
  padding: clamp(46px, 6vw, 70px) 0;
  background: #f7e6d8;
}

.ugcExamples__title{
  margin: 0 0 22px;
  font-size: clamp(34px, 4.4vw, 46px);
  font-weight: 800;
  color: rgba(210,131,88,.95);
  text-shadow: 0 4px 0 rgba(0,0,0,.10);
}

.ugcAlbum{
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 16px;
  align-items: center;
}

/* --- viewport = zone qui scrolle --- */
.ugcAlbum__viewport{
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 18px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 6px;
}

/* scrollbar discrète */
.ugcAlbum__viewport::-webkit-scrollbar{ height: 10px; }
.ugcAlbum__viewport::-webkit-scrollbar-thumb{
  background: rgba(43,32,26,.18);
  border-radius: 999px;
}
.ugcAlbum__viewport::-webkit-scrollbar-track{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}

/* --- track = seulement la rangée d’items --- */
.ugcAlbum__track{
  display: flex;
  gap: 16px;
  padding: 8px 6px 14px;
  width: max-content; /* important : force la largeur selon contenu */
}

/* largeur des cartes (donne ~4 visibles sur desktop) */
.ugcCard{
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.0);
}

@media (max-width: 980px){
  .ugcCard{ flex-basis: 78vw; }
}


.ugcAlbum__track::-webkit-scrollbar{ height: 10px; }
.ugcAlbum__track::-webkit-scrollbar-thumb{
  background: rgba(43,32,26,.18);
  border-radius: 999px;
}
.ugcAlbum__track::-webkit-scrollbar-track{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}

.ugcAlbum__arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: rgba(43,32,26,.70);
  display: grid;
  place-items: center;
}

.ugcAlbum__arrow:hover{
  background: rgba(255,255,255,.95);
}

.ugcCard{
  scroll-snap-align: start;
  background: rgba(255,255,255,.0);
}

.ugcCard__media{
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(43,32,26,.10);
  border: 1px solid rgba(43,32,26,.12);
}

.ugcCard__video{
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
}

.ugcCard__play{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.ugcCard__play::before{
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: rgba(210,131,88,.92);
  box-shadow: 0 16px 32px rgba(43,32,26,.18);
}

.ugcCard__play::after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: translateX(3px);
}

.ugcCard__caption{
  margin: 10px 0 0;
  text-align: center;
  color: rgba(43,32,26,.70);
  font-size: 14px;
}

/* Dots */
.ugcAlbum__dots{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ugcDot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(43,32,26,.18);
  background: transparent;
  cursor: pointer;
}

.ugcDot.is-active{
  background: rgba(210,131,88,.85);
  border-color: rgba(210,131,88,.85);
}

@media (max-width: 980px){
  .ugcAlbum{
    grid-template-columns: 1fr;
  }
  .ugcAlbum__arrow{
    display: none; /* mobile = swipe */
  }
  .ugcAlbum__track{
    grid-auto-columns: minmax(220px, 78vw);
  }
}

/* =========================
   UGC — LIGHTBOX VIDEO
========================= */
.ugcLightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  display: none;
  place-items: center;
  z-index: 9999;
  padding: 18px;
}
.ugcLightbox.is-open{ display: grid; }

.ugcLightbox__panel{
  width: min(430px, 92vw);
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.ugcLightbox__title{
  margin: 0 0 10px;
  font-weight: 700;
  color: rgba(43,32,26,.85);
  font-size: 14px;
}
.ugcLightbox__video{
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  background: #000;
}
.ugcLightbox__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
/* =========================
   UGC — BOUTON PLAY VISIBLE
========================= */

.ugcCard__media{
  position: relative;
  overflow: hidden;
}

/* Vidéo en arrière-plan */
.ugcCard__video{
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* Bouton invisible qui couvre la carte (clic) */
.ugcCard__playBtn{
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3; /* AU-DESSUS de la vidéo */
}

/* Cercle orange */
.ugcCard__playBtn::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--accent); /* même orange que ton site */
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 36px rgba(43,32,26,.25);
}

/* Triangle play blanc */
.ugcCard__playBtn::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  transform: translate(calc(-50% + 4px), -50%);
}

/* Quand la vidéo joue → on cache le bouton */
.ugcCard.is-playing .ugcCard__playBtn{
  display: none;
}

/* Effet hover léger */
.ugcCard__media:hover .ugcCard__playBtn::before{
  transform: translate(-50%, -50%) scale(1.06);
}
/* =========================
   EVENEMENTIEL — 2/3 TEXTE + 1/3 ALBUM
========================= */

#mariage .projectInner{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

#mariage .projectText{
  max-width: none;
}

#mariage .albumWrap{
  width: 100%;
  max-width: 380px;
  justify-self: end;
}

@media (max-width: 980px){
  #mariage .projectInner{
    grid-template-columns: 1fr;
  }

  #mariage .albumWrap{
    max-width: 100%;
    justify-self: stretch;
  }
}
/* EVENEMENTIEL — inversion (album gauche / texte droite) */
.project--reverse{
  grid-template-columns: .95fr 1.05fr;
}
.project--reverse .albumWrap{
  justify-self: start;
}

/* GÂTEAUX — 4 images visibles */
.cakesAlbum{
  margin-top: 18px;
}
.cakesAlbum__viewport{
  overflow: hidden;
}
.cakesAlbum__track{
  display: flex;
  transition: transform .35s ease;
}
.cakesAlbum__slide{
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.cakeCard{ margin: 0; }
.cakeBtn{
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}
.cakeBtn img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.cakeCap{
  margin-top: 8px;
  font-size: 11px;
  opacity: .7;
  text-align: center;
}
.cakesAlbum__controls{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  align-items: center;
  justify-items: center;
}
.cakesAlbum__cta{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px){
  .project--reverse{
    grid-template-columns: 1fr;
  }
  .cakesAlbum__slide{
    grid-template-columns: 1fr 1fr;
  }
  .cakeBtn img{ height: 240px; }
}

@media (max-width: 520px){
  .cakesAlbum__slide{
    grid-template-columns: 1fr;
  }
  .cakeBtn img{ height: 280px; }
}
/* =========================
   EVENEMENTIEL — ULTRA RESPONSIVE + CAKES PORTRAIT
   (à coller tout en bas)
========================= */

/* Reverse : album à gauche, texte à droite (desktop) */
.project--reverse{
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
}
.project--reverse .albumWrap{
  justify-self: start;
}

/* Sur desktop : l'album reste dans 1/3 */
.albumWrap{
  width: 100%;
  max-width: 420px;   /* cohérent avec ton rendu PDF */
  justify-self: end;
}
.album--half{
  width: 100%;
  max-width: 420px;
}

/* MOBILE/TABLETTE : empile toujours propre */
@media (max-width: 980px){
  .project.project--twoCol{
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .albumWrap,
  .album--half{
    max-width: 100% !important;
    justify-self: stretch !important;
  }
}

/* =========================
   CAKES ALBUM (4 images visibles) — portrait conservé
========================= */
.cakesAlbum{
  margin-top: 18px;
}

/* viewport */
.cakesAlbum__viewport{
  width: 100%;
  overflow: hidden;
}

/* track */
.cakesAlbum__track{
  display: flex;
  width: 100%;
  transition: transform .35s ease;
}

/* 4 cartes par slide (desktop) */
.cakesAlbum__slide{
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

/* carte */
.cakeCard{ margin: 0; }
.cakeBtn{
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

/* ✅ portrait conservé : pas de recadrage */
.cakeBtn img{
  width: 100%;
  height: clamp(220px, 22vw, 300px);
  object-fit: contain;            /* IMPORTANT */
  background: rgba(255,255,255,.18);
  border-radius: 14px;
  display: block;
}

/* captions */
.cakeCap{
  margin-top: 10px;
  font-size: 11px;
  opacity: .75;
  text-align: center;
  min-height: 1.2em;
}

/* controls alignés */
.cakesAlbum__controls{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  align-items: center;
}
.cakesAlbum__cta{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* TABLETTE : 2 colonnes */
@media (max-width: 980px){
  .cakesAlbum__slide{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .cakeBtn img{
    height: 260px;
  }
}

/* MOBILE : 1 colonne */
@media (max-width: 520px){
  .cakesAlbum__slide{
    grid-template-columns: 1fr;
  }
  .cakeBtn img{
    height: 320px;
  }
}
/* =========================
   FIX MOBILE — EVENEMENTIEL
   (réduit la hauteur des albums et les espaces)
========================= */

@media (max-width: 520px){

  /* sections moins hautes */
  .projectSection{
    padding: 38px 0 !important;
  }

  /* titres + textes un peu plus compact */
  .projectTitle{
    font-size: 26px !important;
    line-height: 1.15;
  }
  .project__lead{
    font-size: 14px;
  }

  /* album prend toute la largeur + pas d'effet "portrait énorme" */
  .albumWrap{
    max-width: 100% !important;
  }
  .album.album--half{
    max-width: 100% !important;
  }

  /* ✅ HAUTEUR MOBILE : évite l’énorme cadre */
  .album__imgBtn img{
    height: 340px !important;   /* ajuste 320-380 si tu veux */
    object-fit: contain !important;
  }

  /* contrôles un peu plus compacts */
  .album__controls{
    grid-template-columns: 44px 1fr 44px !important;
    margin-top: 10px !important;
  }
  .album__btn{
    width: 44px !important;
    height: 44px !important;
  }

  /* captions plus petites */
  .album__cap{
    font-size: 12px !important;
  }

  /* Cakes : garde portrait mais pas trop haut */
  .cakeBtn img{
    height: 320px !important;
    object-fit: contain !important;
  }
}
/* =========================
   EVENEMENTIEL — FIX "page trop grande" + mobile
========================= */

/* 1) Le hero de la page Event était trop haut chez toi -> on réduit */
.pageHero.pageHero--event{
  padding: 42px 0 20px;          /* plus proche de tes autres pages */
  border-bottom: 1px solid rgba(43,32,26,.10);
}

/* 2) On évite que la 1ère section commence trop bas */
.projectSection.projectSection--eventFirst{
  padding-top: 46px;             /* au lieu de ton gros clamp */
}

/* 3) Mobile : images d’albums pas gigantesques */
@media (max-width: 520px){
  .pageHero.pageHero--event{
    padding: 28px 0 14px;
  }

  .projectSection.projectSection--eventFirst{
    padding-top: 28px;
  }

  /* Albums mariage/anniversaire/event : hauteur raisonnable */
  .album__imgBtn img{
    height: 340px !important;
    object-fit: contain !important;
  }
}

/* =========================
   EVENEMENTIEL — LAYOUT
========================= */

.eventPage .pageHero--event{
  padding: clamp(32px, 5vw, 70px) 0;
  background: rgba(249,239,230,.58);
  border-bottom: 1px solid rgba(43,32,26,.10);
}

.projectSection{
  padding: clamp(46px, 6vw, 76px) 0;
}

.projectSection--eventFirst{
  padding-top: clamp(36px, 5vw, 60px);
}

.eventRow{
  display: grid;
  grid-template-columns: 2fr 1fr; /* ✅ 2/3 - 1/3 */
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.eventRow--left{
  grid-template-columns: 1fr 2fr; /* image à gauche */
}

.eventText{
  max-width: 70ch;
}

.eventH2{
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: rgba(43,32,26,.88);
}

.eventH2--center{ text-align: center; }

.eventP{
  margin: 0 0 12px;
  color: rgba(43,32,26,.72);
}

.eventP--center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 70ch;
}

.eventList{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(43,32,26,.72);
}

.eventMedia{
  justify-self: end;
  width: 100%;
  max-width: 420px; /* ✅ colonne 1/3 stable */
}

/* === Cakes grid (portrait conservé) === */
.cakesGrid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.cakeBtn{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.cakeBtn img{
  width: 100%;
  height: 340px;         /* ✅ portrait */
  object-fit: cover;     /* ✅ garde "portrait" et remplit bien */
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(43,32,26,.14);
  border: 1px solid rgba(43,32,26,.10);
}

.cakesCta{
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 980px){
  .eventRow,
  .eventRow--left{
    grid-template-columns: 1fr; /* ✅ stack */
  }

  .eventMedia{
    justify-self: stretch;
    max-width: 100%;
  }

  .album__imgBtn img{
    height: 360px !important;
    object-fit: contain !important;
  }

  .cakesGrid{
    grid-template-columns: 1fr;
  }

  .cakeBtn img{
    height: 420px;
    object-fit: contain;
  }
}

@media (max-width: 480px){
  .album__imgBtn img{
    height: 320px !important;
  }

  .cakeBtn img{
    height: 360px;
  }
}
/* =========================================================
   FIX — Cohérence entre pages + burger cliquable
========================================================= */

/* 1) Assure-toi que le header est toujours au-dessus de tout */
.header{ z-index: 1000; }

/* 2) Corrige si un bloc passe au-dessus sur mobile */
.pageHero, .projectSection{ position: relative; z-index: 1; }

/* 3) EVENT : même rythme que tes autres pages */
.pageHero--event{
  padding: clamp(32px, 5vw, 70px) 0;
}

/* 4) Burger cliquable : évite qu’un overlay invisible capture */
.burger{ position: relative; z-index: 1200; }
.mobileMenu{ z-index: 2000; }
.overlay{ z-index: 1500; }

/* 5) Mobile : taille album contrôlée */
@media (max-width: 480px){
  .album__imgBtn img{
    height: 320px !important;
    object-fit: contain !important;
  }
}
/* =========================================================
   GRAPHISME — page
========================================================= */

.pageHero--graphisme{
  background: rgba(249,239,230,.58);
  border-bottom: 1px solid rgba(43,32,26,.10);
}

.gSection{
  padding: clamp(56px, 7.5vw, 92px) 0;
}
.gSection--soft{
  background: rgba(249,239,230,.58);
  border-top: 1px solid rgba(43,32,26,.06);
  border-bottom: 1px solid rgba(43,32,26,.06);
}

.gIntro{
  max-width: 78ch;
}

.gH2{
  margin: 0 0 16px;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  color: #111;
}

.gP{
  margin: 0 0 12px;
  color: rgba(43,32,26,.78);
  font-size: 15px;
  line-height: 1.75;
}
.gP--bold{ font-weight: 700; color: rgba(43,32,26,.88); }
.gP--under{
  margin-top: 18px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  color: rgba(43,32,26,.78);
}

.gList{
  margin: 10px 0 12px;
  padding-left: 18px;
  color: rgba(43,32,26,.78);
  line-height: 1.7;
}
.gList li{ margin: 6px 0; }

/* ====== Exemples + mini albums ====== */
.gExamplesTitle{
  margin: 0 0 22px;
  font-size: clamp(34px, 4.4vw, 46px);
  font-weight: 800;
  color: rgba(210,131,88,.95);
  text-shadow: 0 4px 0 rgba(0,0,0,.10);
}

.gExamplesGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.gCard{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(43,32,26,.08);
  border-radius: 18px;
  padding: 14px;
}

/* mini album : même structure que tes albums event, mais compact */
.album--mini .album__slide{ padding: 10px; }
.album--mini .album__imgBtn img{
  height: 260px;
  object-fit: contain; /* important pour PNG / maquettes */
  background: rgba(255,255,255,.22);
}
.album--mini .album__cap{
  text-align: center;
  font-size: 12px;
  opacity: .7;
}

/* contrôles mini plus discrets */
.album--mini .album__controls{
  margin-top: 10px;
}
.album--mini .album__btn{
  width: 40px;
  height: 40px;
  font-size: 22px;
}

/* ====== Pourquoi (4 colonnes) ====== */
.gWhyTitle{
  margin: 0 0 18px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: rgba(210,131,88,.95);
  text-shadow: 0 4px 0 rgba(0,0,0,.10);
}

.gWhyGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.gWhy{
  padding: 10px 0 0;
}
.gWhy__n{
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  color: rgba(210,131,88,.70);
  text-shadow: 0 4px 0 rgba(0,0,0,.08);
  line-height: 1;
  margin-bottom: 10px;
}
.gWhy__p{
  margin: 0;
  color: rgba(43,32,26,.75);
  font-size: 12.5px;
  line-height: 1.65;
}

/* ====== Missions ====== */
.gMissionsTitle{
  margin: 0 0 26px;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 900;
  color: #111;
}

.gMissionsGrid{
  display: grid;
  gap: 20px;
}

.gMission{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: center;
}

.gMission--imgRight{
  grid-template-columns: 1fr 320px;
}

.gMission__media{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(210,131,88,.45);
  box-shadow: 0 18px 40px rgba(43,32,26,.10);
  padding: 10px;
}
.gMission__media img{
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
}

.gMission__title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: rgba(210,131,88,.95);
}
.gMission__p{
  margin: 0;
  color: rgba(43,32,26,.75);
  font-size: 13.5px;
  line-height: 1.7;
}

/* ====== Responsive ====== */
@media (max-width: 980px){
  .gExamplesGrid{ grid-template-columns: 1fr; }
  .gWhyGrid{ grid-template-columns: 1fr 1fr; }
  .gMission,
  .gMission--imgRight{
    grid-template-columns: 1fr;
  }
  .gMission__media img{ height: 240px; }
}

@media (max-width: 520px){
  .gWhyGrid{ grid-template-columns: 1fr; }
  .album--mini .album__imgBtn img{ height: 240px; }
}
/* =========================
   PAGE HERO — COMMUN (toutes pages)
   => mêmes marges / même typo / mêmes tailles
========================= */

.pageHero{
  padding: clamp(56px, 7vw, 96px) 0;
  background: rgba(249,239,230,.58);
  border-bottom: 1px solid rgba(43,32,26,.10);
}

.pageHero__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.pageHero__title{
  margin: 0 0 18px;
  font-size: clamp(54px, 7vw, 78px); /* même vibe que tes pages */
  font-weight: 800;
  color: rgba(210,131,88,.95);
  text-shadow: 0 6px 0 rgba(0,0,0,.10);
  letter-spacing: .5px;
}

.pageHero__tagline{
  margin: 0 0 22px;
  font-family: Allura, cursive;
  font-size: clamp(22px, 3vw, 30px);
  color: rgba(180,106,68,.85);
}

.pageHero__p{
  margin: 0 0 16px;
  color: rgba(43,32,26,.70);
  font-size: 16px;
  max-width: 75ch; /* largeur de lecture cohérente */
}

.pageHero__underline{
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  color: rgba(43,32,26,.75);
}

/* Option : éviter un “vide énorme” si tu as du contenu court */
.pageHero--compact{
  padding: clamp(44px, 6vw, 76px) 0;
}
/* =========================================================
   COHÉRENCE GLOBALE — À COLLER TOUT EN BAS DU CSS
========================================================= */

/* Container identique partout */
.container{ width: min(1100px, 92%); margin: 0 auto; }

.container{
  max-width:1100px;
  margin:auto;
  padding:0 40px;
}

/* Header au-dessus de tout + burger toujours cliquable */
.header{ z-index: 1000; }
.burger{ position: relative; z-index: 1200; }
.overlay{ z-index: 1500; }
.mobileMenu{ z-index: 2000; }

/* H1/hero : même taille/marges sur TOUTES les pages internes */
.pageHero{
  padding: clamp(56px, 7vw, 96px) 0;
  background: rgba(249,239,230,.58);
  border-bottom: 1px solid rgba(43,32,26,.10);
}
.pageHero .container{ max-width: 1100px; }

.pageHero__title{
  margin: 0 0 18px;
  font-size: clamp(54px, 7vw, 78px);
  font-weight: 800;
  color: rgba(210,131,88,.95);
  text-shadow: 0 6px 0 rgba(0,0,0,.10);
  letter-spacing: .5px;
  text-transform: uppercase; /* si tu veux comme tes maquettes */
}

.pageHero__tagline{
  margin: 0 0 22px;
  font-family: Allura, cursive;
  font-size: clamp(22px, 3vw, 30px);
  color: rgba(180,106,68,.85);
}

.pageHero__lead,
.pageHero__p{
  margin: 0 0 16px;
  color: rgba(43,32,26,.70);
  font-size: 16px;
  max-width: 75ch;
}

/* H2 cohérent partout (tes titres de sections) */
.h2{
  margin: 0 0 14px;
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 800;
  color: rgba(210,131,88,.95);
  letter-spacing: .2px;
}
.h2--shadow{ text-shadow: 0 4px 0 rgba(0,0,0,.10); }

/* Footer/subfooter : même padding partout */
.footer{ padding: var(--space-2) 0; }
.subfooter{ padding: 12px 0 18px; }

/* Mobile : hero moins haut pour éviter pages “trop grandes” */
@media (max-width: 520px){
  .pageHero{ padding: 34px 0 44px; }
  .pageHero__title{ font-size: clamp(40px, 12vw, 56px); margin-bottom: 12px; }
  .pageHero__tagline{ margin-bottom: 14px; }
}

/* =========================================================
   FIX — GRAPHISME responsive + marges albums cohérentes
   (à coller TOUT EN BAS du CSS)
========================================================= */

/* 1) évite tout overflow horizontal (souvent causé par les tracks de carousel) */
html, body{
  overflow-x: hidden;
}

/* 2) sécurise les grilles pour ne jamais déborder */
.gExamplesGrid,
.gCard,
.album,
.album__viewport{
  min-width: 0;
}

/* 3) l’album mini reste bien contenu dans la carte */
.gCard{
  overflow: hidden;
}

/* 4) tailles + controls adaptés mobile (mêmes “marges visuelles” que le reste) */
@media (max-width: 980px){

  /* en mobile tu es déjà en 1 colonne, mais on centre et on limite la largeur
     pour que ça ressemble au bloc texte (et pas “plein écran”) */
  .album--mini{
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  /* controls plus compacts */
  .album--mini .album__controls{
    grid-template-columns: 40px 1fr 40px;
  }

  .album--mini .album__btn{
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  /* image : hauteur fluide, pas gigantesque */
  .album--mini .album__imgBtn img{
    height: clamp(240px, 60vw, 360px);
    object-fit: contain;
  }
}

@media (max-width: 520px){

  /* encore un peu plus “propre” sur très petit écran */
  .album--mini{
    max-width: 420px;
  }

  .album--mini .album__imgBtn img{
    height: clamp(220px, 70vw, 340px);
  }
}
@media (max-width: 980px){
  .gExamplesGrid{
    padding-left: 0;
    padding-right: 0;
  }
}
/* =========================================================
   FIX — EVENEMENTIEL overflow + albums contenus
   (à coller TOUT EN BAS du CSS)
========================================================= */

/* Important en grid/flex : autorise la colonne à rétrécir */
.eventRow,
.project.project--twoCol,
.eventText,
.eventMedia,
.albumWrap{
  min-width: 0;
}

/* Media (colonne album) ne doit jamais dépasser le container */
.eventMedia,
.albumWrap{
  width: 100%;
  max-width: 420px; /* ton “1/3” desktop */
}

/* L'album reste à 100% de sa colonne */
.eventMedia .album,
.albumWrap .album{
  width: 100%;
  max-width: 100%;
}

/* Track ne doit pas créer un overflow horizontal */
.album__viewport{
  overflow: hidden;
}

/* Mobile/tablette : on empile et on enlève la contrainte de largeur */
@media (max-width: 980px){
  .eventRow{
    grid-template-columns: 1fr !important;
  }

  .eventMedia,
  .albumWrap{
    max-width: 100% !important;
    justify-self: stretch !important;
  }
}
.album__viewport{
  width:100%;
  overflow:hidden;
}
.album__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gCard {
  max-width: 320px;
  margin: auto;
}
.album__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.album__track{
  display:flex;
  transition:transform .4s ease;
}
.album__slide{
  min-width:100%;
}
.homeHero{
  padding:120px 0 80px;
}

.homeHero__title{
  font-size:42px;
  letter-spacing:4px;
  color:#d4875c;
  font-weight:500;
  margin-bottom:28px;
}

.homeHero__subtitle{
  font-size:22px;
  letter-spacing:6px;
  color:#8c7a3c;
  line-height:1.8;
}
.homeHero{
  padding:140px 0 100px;
}

.homeHero__title{
  font-size:36px;
  letter-spacing:5px;
  color:#d4875c;
  font-weight:400;
  margin-bottom:26px;
}

.homeHero__subtitle{
  font-size:20px;
  letter-spacing:5px;
  color:#8c7a3c;
  line-height:1.9;
  max-width:520px;
}
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
/* =========================================================
   🔥 GLOBAL RESPONSIVE FIX (SAFE VERSION)
   À COLLER TOUT EN BAS DU CSS
========================================================= */

/* Empêche tout scroll horizontal */
html, body {
  overflow-x: hidden;
}

/* Médias fluides */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Corrige les débordements grid/flex */
* {
  min-width: 0;
}

/* Container mobile plus respirant */
@media (max-width: 768px){
  .container {
    padding: 0 20px;
  }
}

/* =========================================================
   HEADER MOBILE
========================================================= */
@media (max-width: 768px){
  .header__inner{
    padding: 10px 0;
  }

  .brand__name{
    font-size: 24px;
  }
}

/* =========================================================
   HERO FIX (évite énorme bloc mobile)
========================================================= */
.homeHero{
  padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 8vw, 100px);
}

@media (max-width: 768px){
  .homeHero{
    padding: 80px 0 40px;
    text-align: center;
  }

  .homeHero__title{
    font-size: 28px;
    letter-spacing: 2px;
  }

  .homeHero__subtitle{
    font-size: 16px;
    letter-spacing: 2px;
  }
}

/* =========================================================
   GRIDS FIX
========================================================= */

/* Process */
@media (max-width: 980px){
  .processSteps{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .processSteps{
    grid-template-columns: 1fr;
  }
}

/* Cards */
@media (max-width: 980px){
  .cardsGrid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .cardsGrid{
    grid-template-columns: 1fr;
  }
}

/* Cakes */
@media (max-width: 980px){
  .cakesGrid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px){
  .cakesGrid{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ALBUM FIX (CRUCIAL)
========================================================= */
.album__imgBtn img{
  width: 100% !important;
  height: auto !important;
  max-height: 70vh !important;
  object-fit: contain !important;
}

@media (max-width: 768px){
  .album__imgBtn img{
    max-height: 50vh !important;
  }
}

/* =========================================================
   ABOUT FIX (évite disparition image)
========================================================= */
@media (max-width: 980px){
  .aboutBlock{
    grid-template-columns: 1fr;
  }

  .aboutBlock__media{
    display: block !important;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* =========================================================
   SIGNATURE FIX
========================================================= */
.signature{
  white-space: normal;
  text-align: center;
}

/* =========================================================
   FOOTER MOBILE
========================================================= */
@media (max-width: 600px){
  .footer__inner{
    flex-direction: column;
    text-align: center;
  }

  .footer__link{
    width: 100%;
  }
}

.offers-section {
  padding: 60px 20px;
  text-align: center;
}

.offers-title {
  font-size: 28px;
  margin-bottom: 40px;
}

.ugc-container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

h3 {
  margin-top: 40px;
  font-size: 20px;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.highlight {
  font-weight: bold;
  color: #c47c5a;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #eee;
}

.pricing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 150px;
  padding: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  text-align: center;
}

.card span {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #c47c5a;
  color: white;
  text-decoration: none;
  border-radius: 25px;
}

.offers-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  color: #c47c5a;
  margin-bottom: 20px;
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.offer-card li {
  margin-bottom: 10px;
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  background: #c47c5a;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.featured {
  border: 2px solid #c47c5a;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: #c47c5a;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}