/* ============================================================
   COMME UNE FLEUR — Fleuriste Mérignac
   Palette : blanc chaud · vert bouteille · rose poudré · noir profond
   ============================================================ */

:root {
  --paper: #FBF8F1;
  --paper-2: #F5EFE1;
  --cream: #EEE7D2;
  --ink: #1A1F1A;
  --ink-soft: #2A2F2A;
  --mute: #6C726B;
  --forest: #2D4A3E;
  --forest-dark: #1E3529;
  --forest-light: #476C5C;
  --sage: #93A99B;
  --blush: #E5B6A8;
  --rose: #C4756C;
  --line: rgba(26, 31, 26, .12);
  --shadow-md: 0 8px 24px -12px rgba(26, 31, 26, .18);
  --shadow-lg: 0 20px 60px -25px rgba(26, 31, 26, .22);
  --shadow-xl: 0 40px 100px -40px rgba(26, 31, 26, .3);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Fraunces', 'Times New Roman', serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-swift: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: multiply;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .8 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Typos */
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(4rem, 15vw, 11rem); font-weight: 300; letter-spacing: -0.05em; }
h2 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0; }
em.italic, .italic { font-style: italic; font-weight: 300; color: var(--forest); }

p { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
p.lead { font-family: var(--display); font-style: italic; font-weight: 300; font-size: 1.28rem; line-height: 1.5; color: var(--ink); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--forest);
  transform-origin: 0 0;
  transform: scaleX(0);
  z-index: 1001;
  pointer-events: none;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1s var(--ease-swift); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform 1s var(--ease-swift); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease), transform 1s var(--ease-swift); }
.reveal-right.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  background: transparent;
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,26,.4) 0%, rgba(26,31,26,.05) 70%, transparent 100%);
  pointer-events: none;
  z-index: -1;
  transition: opacity .4s var(--ease);
}
.header.scrolled::before { opacity: 0; }
.header.scrolled {
  background: rgba(251, 248, 241, .97);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  transition: color .4s var(--ease);
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.header.scrolled .logo { color: var(--ink); text-shadow: none; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform .5s var(--ease), background .4s;
  flex-shrink: 0;
  text-shadow: none;
}
.header.scrolled .logo-mark { background: var(--forest); }
.logo:hover .logo-mark { transform: rotate(15deg) scale(1.08); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}
.logo-text .sub {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: .8;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav a {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  text-shadow: 0 1px 5px rgba(0,0,0,.3);
  transition: color .3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 0; height: 1px;
  background: var(--blush);
  transition: width .4s var(--ease);
}
.nav a:hover::after { width: 100%; }
.header.scrolled .nav a { color: var(--ink); text-shadow: none; }
.nav a:hover { color: var(--forest); }

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-forest {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}
.btn-forest:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251, 248, 241, .5);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--paper);
  transform: translateY(-2px);
}
.header .btn { padding: 10px 20px; font-size: .66rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--paper);
  transition: all .3s var(--ease);
}
.header.scrolled .burger span { background: var(--ink); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--forest-dark);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .4s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav ul { list-style: none; text-align: center; padding: 0; }
.mobile-nav li { margin: 22px 0; }
.mobile-nav a {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--paper);
  font-weight: 300;
  font-style: italic;
}
.mobile-nav a:hover { color: var(--blush); }
.mobile-nav .btn-forest { color: var(--paper); font-style: normal; font-family: var(--sans); font-size: .82rem; background: var(--blush); border-color: var(--blush); color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 320vh;
  background: var(--forest-dark);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 31, 26, .55) 0%, rgba(26, 31, 26, .3) 40%, rgba(26, 31, 26, .8) 100%),
    radial-gradient(circle at 20% 40%, rgba(229, 182, 168, .12), transparent 55%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 140px 40px 60px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-top { margin-bottom: 40px; }
.chip {
  display: inline-block;
  padding: 8px 18px;
  background: var(--blush);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px -8px rgba(229, 182, 168, .35);
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: .9;
  margin-bottom: 40px;
}
.hero-title .l1 {
  font-family: var(--display);
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 300;
  color: var(--paper);
  letter-spacing: -0.05em;
  line-height: .9;
}
.hero-title .l2 {
  font-family: var(--display);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 300;
  color: var(--paper);
  font-style: italic;
  letter-spacing: -0.03em;
  padding-left: 10%;
  margin-top: 8px;
}
.hero-title em {
  color: var(--blush);
  font-style: italic;
  font-weight: 300;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-desc {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--paper);
  max-width: 480px;
  line-height: 1.5;
  padding: 16px 20px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--blush);
  border-radius: 4px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Marquee bas hero */
.hero-marquee {
  position: relative;
  z-index: 3;
  background: var(--blush);
  color: var(--ink);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marqueeSlide 45s linear infinite;
}
.marquee-item {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .04em;
  white-space: nowrap;
  color: var(--ink);
}
@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ATELIER (À propos)
   ============================================================ */
.atelier { padding: 140px 0 120px; background: var(--paper); }
.atelier-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 90px;
  align-items: center;
}
.atelier-media { position: relative; }
.atelier-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  border-radius: 6px;
  box-shadow: var(--shadow-xl);
}
.atelier-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.2;
  box-shadow: var(--shadow-lg);
  transform: rotate(-6deg);
}
.atelier-content .eyebrow { margin-bottom: 18px; }
.atelier-content h2 { margin-bottom: 30px; }
.atelier-content p { margin-bottom: 18px; }

/* Eyebrow util */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--forest);
}
.eyebrow.blush { color: var(--blush); }

/* Sec head */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h2 { margin-bottom: 24px; }
.sec-head p { color: var(--mute); font-family: var(--display); font-style: italic; font-size: 1.15rem; }
.sec-head.on-dark h2 { color: var(--paper); }
.sec-head.on-dark p { color: rgba(251, 248, 241, .75); }

/* ============================================================
   CRÉATIONS (Galerie)
   ============================================================ */
.creations { padding: 140px 0 120px; background: var(--cream); }
.creations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
}
.g {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform .6s var(--ease);
  cursor: zoom-in;
}
.g:hover { transform: scale(1.02); }
.g::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(26, 31, 26, .3));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.g:hover::after { opacity: 1; }
.g-1 { grid-column: 1 / 8; grid-row: span 4; }
.g-2 { grid-column: 8 / 13; grid-row: span 4; }
.g-3 { grid-column: 1 / 5; grid-row: span 3; }
.g-4 { grid-column: 5 / 9; grid-row: span 3; }
.g-5 { grid-column: 9 / 13; grid-row: span 3; }
.g-6 { grid-column: 1 / 13; grid-row: span 3; }

/* ============================================================
   OCCASIONS (fond forest)
   ============================================================ */
.occasions {
  padding: 140px 0 120px;
  background: var(--forest-dark);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.occasions::before {
  content: '';
  position: absolute;
  top: 15%; right: -12%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(229, 182, 168, .15), transparent 60%);
  pointer-events: none;
}
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.occ-card {
  background: rgba(251, 248, 241, .04);
  border: 1px solid rgba(251, 248, 241, .12);
  border-radius: 8px;
  padding: 36px 30px 32px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.occ-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blush);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.occ-card:hover {
  background: rgba(251, 248, 241, .07);
  border-color: var(--blush);
  transform: translateY(-5px);
}
.occ-card:hover::before { transform: scaleX(1); }
.occ-illu {
  width: 60px; height: 60px;
  margin-bottom: 22px;
  color: var(--blush);
}
.occ-illu svg { width: 100%; height: 100%; }
.occ-card h3 {
  color: var(--paper);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.occ-card p {
  color: rgba(251, 248, 241, .75);
  font-size: .96rem;
  line-height: 1.6;
}
.occasions-note {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(251, 248, 241, .8);
  padding-top: 40px;
  border-top: 1px solid rgba(251, 248, 241, .12);
  max-width: 720px;
  margin: 0 auto;
}
.occasions-note span { color: var(--blush); margin-right: 6px; }
.occasions-note a {
  color: var(--blush);
  border-bottom: 1px solid var(--blush);
  padding-bottom: 1px;
  font-weight: 500;
}
.occasions-note a:hover { color: var(--paper); border-color: var(--paper); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 140px 0 120px; background: var(--paper-2); }
.reviews-hero { max-width: 1200px; margin: 0 auto; }
.score-block { text-align: center; margin-bottom: 60px; }
.score-big {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: .9;
  color: var(--forest);
  letter-spacing: -0.04em;
}
.score-big .score-max {
  font-size: .32em;
  color: var(--mute);
  font-style: normal;
  margin-left: 6px;
}
.score-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 18px 0 14px;
  color: var(--rose);
}
.score-stars svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }
.score-count {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
}
.score-count a {
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  transition: color .3s;
}
.score-count a:hover { color: var(--ink); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--paper);
  padding: 40px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s;
}
.review-card:hover { transform: translateY(-6px); border-color: var(--forest); }
.review-quote {
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--display);
  font-style: italic;
  font-size: 4rem;
  color: var(--forest);
  line-height: 1;
  opacity: .4;
}
.review-card p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 18px 0 24px;
  position: relative;
  z-index: 1;
}
.review-author {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-author strong {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
}
.review-author span {
  font-size: .78rem;
  color: var(--mute);
  letter-spacing: .04em;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 140px 0 120px; background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-lbl {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}
.contact-val {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
}
.contact-val a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s, color .3s;
}
.contact-val a:hover { color: var(--forest); border-color: var(--forest); }

.hours { border-collapse: collapse; margin-top: 4px; }
.hours td { padding: 6px 0; font-family: var(--sans); font-size: .95rem; color: var(--ink); font-style: normal; }
.hours td:first-child {
  font-weight: 600;
  color: var(--ink);
  min-width: 100px;
  padding-right: 18px;
}
.hours td:last-child { color: var(--mute); }
.hours tr.highlight td { color: var(--rose); font-weight: 500; }

.contact-map {
  background: var(--paper-2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest-dark);
  color: var(--paper);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-hero {
  text-align: center;
  padding: 40px 20px 60px;
}
.footer-hero .huge {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--paper);
  letter-spacing: -0.04em;
  line-height: .9;
}
.footer-hero em {
  color: var(--blush);
  font-style: italic;
}
.footer-hero .sub {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(251, 248, 241, .6);
  margin-top: 16px;
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(251, 248, 241, .12);
}
.footer-brand .logo { margin-bottom: 22px; color: var(--paper); text-shadow: none; }
.footer-brand .brand.on-dark { color: var(--paper); }
.footer-brand .logo-mark.on-dark { background: var(--blush); color: var(--ink); }
.footer .brand-desc { color: rgba(251, 248, 241, .7); font-size: .94rem; line-height: 1.6; max-width: 340px; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin: 8px 0; }
.footer-col a, .footer-col p {
  color: rgba(251, 248, 241, .78);
  font-size: .92rem;
  transition: color .3s;
  line-height: 1.5;
}
.footer-col p { margin: 6px 0; }
.footer-col a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(251, 248, 241, .12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: .78rem;
  color: rgba(251, 248, 241, .55);
  flex-wrap: wrap;
}
.footer-bottom .credit strong { color: var(--blush); font-weight: 600; }

/* ============================================================
   RESPONSIVE — tablette + mobile
   ============================================================ */
@media (max-width: 1050px) {
  .atelier-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-map { aspect-ratio: 16/10; }
  .creations-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .g-1 { grid-column: 1 / 7; grid-row: span 3; }
  .g-2 { grid-column: 1 / 7; grid-row: span 2; }
  .g-3, .g-4, .g-5 { grid-column: span 2; grid-row: span 2; }
  .g-6 { grid-column: 1 / 7; grid-row: span 2; }
}

@media (max-width: 900px) {
  .nav, .header .btn { display: none; }
  .burger { display: flex; }
  .wrap { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .hero-inner { padding: 120px 24px 40px; }
  .atelier, .creations, .occasions, .reviews, .contact { padding: 90px 0; }
  .occasions-grid { gap: 16px; }
}

/* ============================================================
   RESPONSIVE iPHONE — <= 480px, épuré et pro
   ============================================================ */
@media (max-width: 480px) {
  html { overflow-x: clip; }
  body { overflow-x: clip; max-width: 100vw; }
  * { min-width: 0; }
  img, svg, video, iframe { max-width: 100%; height: auto; }

  .wrap { padding: 0 18px; }
  h1 { font-size: clamp(3rem, 20vw, 4.4rem); line-height: .95; letter-spacing: -0.04em; }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.05; letter-spacing: -0.02em; }
  h3 { font-size: 1.35rem; }
  p { font-size: .96rem; line-height: 1.6; }
  section { padding: 60px 0; }

  /* HEADER + safe-area iPhone */
  .header { padding: calc(env(safe-area-inset-top) + 12px) 0 12px; }
  .header.scrolled { padding: calc(env(safe-area-inset-top) + 10px) 0 10px; }
  .header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: env(safe-area-inset-top);
    background: rgba(26, 31, 26, .45);
    backdrop-filter: blur(8px);
    pointer-events: none;
    transition: background .4s;
    z-index: -1;
  }
  .header.scrolled::before { background: rgba(251, 248, 241, .97); }
  .header-inner { padding: 0 18px; }
  .logo-mark { width: 38px; height: 38px; font-size: 1.15rem; }
  .logo-text .brand { font-size: 1.1rem; }
  .logo-text .sub { font-size: .52rem; letter-spacing: .26em; margin-top: 3px; }

  /* MOBILE NAV fullscreen safe-area */
  .mobile-nav {
    z-index: 200;
    padding: calc(env(safe-area-inset-top) + 50px) 0 calc(env(safe-area-inset-bottom) + 30px);
    overflow-y: auto;
  }
  .mobile-nav ul { width: 100%; }
  .mobile-nav li { margin: 16px 0; }
  .mobile-nav a { font-size: 1.9rem; }
  body.nav-open { position: fixed; width: 100%; overflow: hidden; }

  /* HERO */
  .hero-sticky { height: 100svh; }
  .hero-inner { padding: calc(env(safe-area-inset-top) + 90px) 20px 40px; }
  .hero-top { margin-bottom: 28px; }
  .chip { font-size: .6rem; padding: 6px 12px; letter-spacing: .14em; white-space: normal; text-align: center; }
  .hero-title { margin-bottom: 26px; }
  .hero-title .l1 { font-size: 3.6rem; }
  .hero-title .l2 { font-size: 3rem; padding-left: 8%; margin-top: 4px; }
  .hero-bottom { flex-direction: column; align-items: stretch; gap: 20px; margin-top: 20px; }
  .hero-desc { font-size: .96rem; padding: 12px 16px; max-width: 100%; }
  .hero-ctas { width: 100%; flex-direction: column; gap: 8px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 11px 20px; font-size: .66rem; }

  /* MARQUEE */
  .marquee-item { font-size: .82rem; }
  .hero-marquee { padding: 10px 0; }

  /* SEC HEAD */
  .sec-head { margin-bottom: 34px; }
  .sec-head p { font-size: .98rem; }

  /* HERO scroll-driven — plus court sur mobile */
  .hero { height: 260vh; }

  /* ATELIER */
  .atelier { padding: 60px 0; }
  .atelier-grid { gap: 40px; }
  .atelier-photo { aspect-ratio: 4/3; }
  .atelier-badge { width: 90px; height: 90px; bottom: -18px; right: -8px; font-size: .88rem; }
  .atelier-content .lead { font-size: 1.02rem; }

  /* CRÉATIONS — grid 2 col compact */
  .creations { padding: 60px 0; }
  .creations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 8px;
  }
  .g-1 { grid-column: 1 / -1; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; grid-row: span 2; }
  .g-6 { grid-column: 1 / -1; grid-row: span 2; }

  /* OCCASIONS — scroll horizontal snap */
  .occasions { padding: 70px 0; }
  .occasions-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 18px 16px;
    margin: 0 -18px 40px;
  }
  .occasions-grid::-webkit-scrollbar { display: none; }
  .occ-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    padding: 28px 22px 26px;
  }
  .occ-illu { width: 52px; height: 52px; margin-bottom: 16px; }

  /* AVIS — 3 cartes scroll horizontal snap */
  .reviews { padding: 60px 0; }
  .score-block { margin-bottom: 34px; }
  .score-big { font-size: 4rem; }
  .score-stars svg { width: 22px; height: 22px; }
  .score-count { font-size: .74rem; letter-spacing: .14em; }
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 18px 18px;
    margin: 0 -18px 30px;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
    padding: 30px 22px 24px;
  }
  .review-quote { font-size: 3.2rem; top: 6px; left: 14px; }
  .review-card p { font-size: .96rem; margin: 12px 0 20px; }
  .reviews-cta { flex-direction: column; gap: 10px; }
  .reviews-cta .btn { width: 100%; }

  /* CONTACT */
  .contact { padding: 70px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { gap: 24px; }
  .contact-block { gap: 14px; align-items: flex-start; }
  .contact-ico { width: 42px; height: 42px; flex-shrink: 0; }
  .contact-ico svg { width: 18px; height: 18px; }
  .contact-lbl { font-size: .62rem; letter-spacing: .24em; margin-bottom: 6px; }
  .contact-val { font-size: 1rem; }
  .hours { width: 100%; }
  .hours td { font-size: .88rem; padding: 4px 0; }
  .hours td:first-child { min-width: 90px; padding-right: 10px; }
  .contact-map { aspect-ratio: 4/3; }

  /* FOOTER 3 col compact */
  .footer { padding: 40px 0 24px; }
  .footer-hero { padding: 30px 20px 30px; }
  .footer-hero .huge { font-size: 3rem; }
  .footer-hero .sub { font-size: .78rem; letter-spacing: .28em; margin-top: 12px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding: 26px 18px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 8px;
  }
  .footer-brand .logo { justify-content: center; margin-bottom: 14px; }
  .footer-brand .brand-desc { margin: 0 auto; max-width: 280px; font-size: .82rem; text-align: center; }
  .footer-col h5 { font-size: .58rem; letter-spacing: .2em; margin-bottom: 10px; }
  .footer-col a, .footer-col p { font-size: .82rem; line-height: 1.5; }
  .footer-col li { margin: 4px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: .66rem; padding: 12px 18px 0; }
}

/* iPhone SE / mini */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero-title .l1 { font-size: 3.2rem; }
  .hero-title .l2 { font-size: 2.6rem; }
  .footer-hero .huge { font-size: 2.6rem; }
  .score-big { font-size: 3.4rem; }
  .occ-card { flex-basis: 82%; }
  .review-card { flex-basis: 86%; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 26, .96);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .lb-img {
  width: 92%;
  height: 82%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.lightbox button {
  position: absolute;
  background: rgba(251, 248, 241, .12);
  color: var(--paper);
  border: 1px solid rgba(251, 248, 241, .3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(8px);
}
.lightbox button:hover, .lightbox button:active { background: var(--blush); color: var(--ink); border-color: var(--blush); }
.lightbox .lb-close { top: max(18px, calc(env(safe-area-inset-top) + 12px)); right: 18px; font-size: 1.6rem; }
.lightbox .lb-prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox .lb-next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
@media (max-width: 480px) {
  .lightbox .lb-img { width: 96%; height: 70%; }
  .lightbox button { width: 40px; height: 40px; }
}
