/* ══════════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════════ */
:root {
  --cream-light:   #F5EDE3;
  --cream-mid:     #EDE0D0;
  --cream-texture: #E8D9C8;
  --brown-dark:    #3D1F0D;
  --brown-mid:     #6B3A2A;
  --pink-soft:     #D4847A;
  --pink-light:    #E8A89F;
  --white:         #FDFAF7;
  --ff-display:    'Cormorant Garamond', serif;
  --ff-body:       'DM Sans', sans-serif;
  --section-pad:   110px;
  --container:     1200px;
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background-color: var(--cream-light);
  color: var(--brown-dark);
  overflow-x: hidden;
  cursor: none; /* curseur custom */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ══════════════════════════════════════════════
   CURSEUR CUSTOM
══════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--pink-soft);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.35s,
              border-color 0.35s,
              opacity 0.3s;
  will-change: transform;
  mix-blend-mode: multiply;
}

.cursor.is-hover {
  width: 80px;
  height: 80px;
  background: rgba(212, 132, 122, 0.12);
  border-color: var(--pink-soft);
}

.cursor.is-clicking {
  width: 30px;
  height: 30px;
  background: rgba(212, 132, 122, 0.25);
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--pink-soft);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* ══════════════════════════════════════════════
   BARRE DE PROGRESSION SCROLL
══════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-soft), var(--pink-light));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9998;
}

/* ══════════════════════════════════════════════
   INTRO CINÉMATIQUE
══════════════════════════════════════════════ */
.intro {
  position: fixed;
  inset: 0;
  background: transparent; /* les barres fournissent le fond */
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.intro__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2; /* au-dessus des barres */
}

.intro__mds {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 600;
  color: var(--cream-light);
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
}

.intro__name {
  font-family: var(--ff-display);
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--pink-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  opacity: 0;
}

.intro__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--brown-dark);
  z-index: 1;
  will-change: transform;
}

.intro__bar--top    { top: 0; }
.intro__bar--bottom { bottom: 0; }

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-sep {
  width: 80px;
  height: 1px;
  background: var(--pink-soft);
  margin: 0 auto;
  opacity: 0.45;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHIE PARTAGÉE
══════════════════════════════════════════════ */
.section-label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-soft);
  display: block;
  margin-bottom: 16px;
}
.section-label--light { color: var(--pink-light); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--brown-dark);
}
.section-title--light { color: var(--cream-light); }
.section-title em { font-style: italic; color: var(--brown-mid); }
.section-title--light em { color: var(--pink-light); }

.section-subtitle {
  font-family: var(--ff-body);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--brown-mid);
  margin-top: 12px;
}
.section-subtitle--light { color: rgba(237, 224, 208, 0.7); }

/* Wrappers pour clip-reveal de titre */
.title-clip {
  overflow: hidden;
  display: block;
}

/* ══════════════════════════════════════════════
   LOGO
══════════════════════════════════════════════ */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 44px;
}

.logo__mark {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__initials {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.05em;
}

.logo__petal {
  position: absolute;
  font-size: 0.85rem;
  color: var(--pink-soft);
  line-height: 1;
}
.logo__petal--tl { top: 0;    left: 0;  }
.logo__petal--tr { top: 0;    right: 0; }
.logo__petal--bl { bottom: 0; left: 0;  }
.logo__petal--br { bottom: 0; right: 0; }

.logo__name {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--brown-mid);
  margin-top: 8px;
  text-align: center;
}

.logo--xl .logo__mark     { width: 150px; height: 150px; }
.logo--xl .logo__initials { font-size: 3.8rem; }
.logo--xl .logo__petal    { font-size: 1.5rem; }
.logo--xl .logo__name     { font-size: 1rem; letter-spacing: 0.22em; margin-top: 16px; }

/* ══════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-decoration: none;
  cursor: none;
  position: relative;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}

.btn--primary {
  background: var(--pink-soft);
  color: var(--white);
  border: 1px solid var(--pink-soft);
}

.btn--primary:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  box-shadow: 0 12px 32px rgba(212, 132, 122, 0.3);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--pink-soft);
  outline-offset: 4px;
}

/* ══════════════════════════════════════════════
   iPHONE MOCKUP
══════════════════════════════════════════════ */
.iphone {
  position: relative;
  width: 190px;
  height: 380px;
  background: #1C1C1E;
  border-radius: 42px;
  padding: 11px;
  box-shadow:
    inset 0 0 0 1.5px #3A3A3C,
    0 30px 72px rgba(61, 31, 13, 0.2),
    0 8px 20px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.iphone__notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #1C1C1E;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.iphone__screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}

.iphone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* iPhone tourné en paysage — vidéos drone (Constance, Cap Ferret) */
.iphone--landscape {
  width: 380px;
  height: 214px;
  border-radius: 30px;
}
.iphone--landscape .iphone__screen { border-radius: 22px; overflow: hidden; }
.iphone--landscape .iphone__notch {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 74px;
  border-radius: 0 14px 14px 0;
}
.portfolio-item--landscape { justify-content: center; }

/* Ces vidéos sont des fichiers en pixels portrait contenant une scène
   filmée couchée : on pivote de -90° pour la remettre à l'horizontale.
   width/height sont posés en JS (= dimensions du conteneur inversées). */
.iphone--landscape .iphone__screen video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  object-fit: cover;
}

.iphone--hero {
  width: 290px;
  height: 580px;
  border-radius: 54px;
  box-shadow:
    inset 0 0 0 2px #3A3A3C,
    0 40px 100px rgba(61, 31, 13, 0.25),
    0 10px 30px rgba(0,0,0,0.15);
}
.iphone--hero .iphone__screen { border-radius: 44px; }
.iphone--hero .iphone__notch  { width: 110px; height: 28px; }
.iphone--hero .iphone__screen img { filter: grayscale(1); }

/* ══════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background-color: var(--cream-light);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  min-width: 0;
}

.hero__meta {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 20px;
  overflow: hidden;
}

/* Wrapper pour la headline (clip reveal) */
.hero__headline-wrap {
  overflow: hidden;
  margin-bottom: 36px;
  width: 100%;
  align-self: stretch;
}

.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--brown-dark);
  width: 100%;
  overflow-wrap: break-word;
}

.hero__headline em {
  font-style: italic;
  color: var(--pink-soft);
}

/* Lignes splitées par JS */
.h-line {
  display: block;
  overflow: hidden;
  max-width: 100%;
}

.h-line__in {
  display: block;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--brown-mid);
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
}

.hero__social:hover { color: var(--pink-soft); }

.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Fleurs parallax */
.flower {
  position: absolute;
  color: var(--pink-soft);
  pointer-events: none;
  user-select: none;
  will-change: transform;
  font-size: 1.5rem;
}

.flower-1 { top: 11%;  left: 5%;   font-size: 2.2rem; opacity: 0.45; }
.flower-2 { top: 20%;  left: 55%;  font-size: 1rem;   opacity: 0.25; }
.flower-3 { top: 60%;  left: 3%;   font-size: 0.9rem; opacity: 0.3; }
.flower-4 { top: 74%;  right: 6%;  font-size: 1.9rem; opacity: 0.35; }
.flower-5 { top: 8%;   right: 16%; font-size: 0.8rem; opacity: 0.22; }
.flower-6 { top: 42%;  left: 46%;  font-size: 0.7rem; opacity: 0.18; }
.flower-7 { top: 84%;  left: 30%;  font-size: 1.2rem; opacity: 0.2; }

/* Indicateur scroll hero */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--brown-mid);
  opacity: 0.6;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--brown-mid));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.6); opacity: 0.3; }
}

/* ══════════════════════════════════════════════
   2. TAGLINE
══════════════════════════════════════════════ */
.tagline {
  min-height: 100vh;
  background-color: var(--cream-texture);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tagline__flowers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tagline__flower {
  position: absolute;
  color: var(--pink-soft);
}

.tagline__flower--1 { top: 10%;    left: 6%;    font-size: 1.6rem; opacity: 0.28; }
.tagline__flower--2 { top: 15%;    right: 8%;   font-size: 1rem;   opacity: 0.22; }
.tagline__flower--3 { bottom: 20%; left: 10%;   font-size: 0.8rem; opacity: 0.18; }
.tagline__flower--4 { bottom: 12%; right: 5%;   font-size: 2rem;   opacity: 0.25; }
.tagline__flower--5 { top: 50%;    left: 3%;    font-size: 0.7rem; opacity: 0.15; }

.tagline__inner {
  max-width: 880px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Chaque ligne enveloppée dans un clip par JS */
.tagline-line-wrap {
  overflow: hidden;
  display: block;
}

.tagline-line {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--brown-dark);
  display: block;
}

.tagline-line--italic { font-style: italic; color: var(--brown-mid); }

.tagline__keyword {
  font-style: italic;
  color: var(--pink-soft);
  font-weight: 400;
  position: relative;
}

/* Shimmer sur le mot "briller" */
.tagline__keyword::after {
  content: '';
  position: absolute;
  inset: -2px -4px;
  background: linear-gradient(105deg, transparent 40%, rgba(212,132,122,0.15) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite 2s;
  border-radius: 4px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════════════
   3. À PROPOS
══════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about__photo-wrap { display: flex; justify-content: center; }

.about__photo {
  width: 370px;
  max-width: 100%;
  height: 490px;
  border-radius: 200px 200px 40px 40px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(61, 31, 13, 0.14);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about__photo:hover img { transform: scale(1.04); }

.about__body {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__body p {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--brown-mid);
}

.about__body em {
  font-style: italic;
  font-family: var(--ff-display);
  font-size: 1.06em;
  color: var(--brown-dark);
}

.about__body strong {
  font-weight: 500;
  color: var(--brown-dark);
}

/* ══════════════════════════════════════════════
   4. PORTFOLIO — scroll horizontal
══════════════════════════════════════════════ */
.portfolio {
  padding: var(--section-pad) 0 0;
  background: var(--cream-mid);
}

.portfolio__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  opacity: 0.6;
}

.portfolio-viewport {
  overflow: hidden;
  padding: 48px 0 80px;
}

.portfolio-track {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 0 80px;
  width: max-content;
  will-change: transform;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  perspective: 1000px;
  cursor: none;
}

.portfolio-item .iphone {
  transition: box-shadow 0.4s ease;
  will-change: transform;
}

.portfolio-item:hover .iphone {
  box-shadow:
    inset 0 0 0 1.5px #3A3A3C,
    0 40px 90px rgba(61, 31, 13, 0.28),
    0 12px 28px rgba(0,0,0,0.18);
}

.portfolio-client {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: 0;
}

.portfolio-logo {
  max-height: 40px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(100%);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.portfolio-item:hover .portfolio-logo {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* ══════════════════════════════════════════════
   OVERLAY VIDÉO PORTFOLIO
══════════════════════════════════════════════ */
.iphone__screen {
  position: relative;
}

.iphone__screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  transition: background 0.35s;
  border-radius: inherit;
}

.video-overlay.is-hidden {
  background: transparent;
}

.video-overlay.is-hidden:hover {
  background: rgba(0,0,0,0.12);
}

.play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(253, 250, 247, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  cursor: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  transition: transform 0.2s, background 0.2s, opacity 0.3s;
}

.play-btn svg { margin-left: 3px; }

.play-btn:hover {
  transform: scale(1.1);
  background: var(--white);
}

.play-btn:focus-visible {
  outline: 2px solid var(--pink-soft);
  outline-offset: 3px;
}

.video-overlay.is-hidden .play-btn {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

.video-overlay.is-hidden:hover .play-btn {
  opacity: 0.7;
  transform: scale(0.9);
  pointer-events: auto;
}

/* ══════════════════════════════════════════════
   5. ÉQUIPEMENTS
══════════════════════════════════════════════ */
.equipment {
  padding: var(--section-pad) 0;
  background: var(--cream-mid);
}

/* ══════ VALISE ANIMÉE ══════ */
.suitcase-scene {
  display: flex;
  justify-content: center;
  margin-top: 64px;
  padding-top: 56px; /* espace pour la poignée */
  perspective: 1200px;
}

.suitcase {
  width: 100%;
  max-width: 740px;
  position: relative;
  will-change: transform;
}

/* Poignée */
.suitcase__handle {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.suitcase__handle-grip {
  width: 160px;
  height: 46px;
  border: 5px solid var(--brown-mid);
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  position: relative;
}

.suitcase__handle-grip::before,
.suitcase__handle-grip::after {
  content: '';
  position: absolute;
  bottom: -7px;
  width: 18px;
  height: 22px;
  background: var(--brown-mid);
  border-radius: 0 0 5px 5px;
}

.suitcase__handle-grip::before { left: -5px; }
.suitcase__handle-grip::after  { right: -5px; }

/* Couvercle — position absolute, pivote autour de la charnière basse */
.suitcase__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  transform-origin: center bottom;
  will-change: transform, opacity;
  z-index: 2;
}

/* Spacer — même hauteur que le couvercle, maintient l'espace dans le flux */
.suitcase__spacer {
  pointer-events: none;
}

/* Corps intérieur */
.suitcase__bottom {
  position: relative;
  z-index: 1;
}

/* Couvercle */
.suitcase__lid {
  width: 100%;
  height: 168px;
  background: linear-gradient(155deg, #5a2918 0%, var(--brown-dark) 80%);
  border-radius: 18px 18px 6px 6px;
  border: 3px solid rgba(107,58,42,0.9);
  border-bottom: 3px solid rgba(107,58,42,0.4);
  position: relative;
  z-index: 2;
  transform-origin: center bottom;
  will-change: transform;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 8px 30px rgba(0,0,0,0.22);
}

.suitcase__lid::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(107,58,42,0.38);
  border-radius: 10px;
  pointer-events: none;
}

.suitcase__lid-stripe {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0; right: 0;
  height: 16px;
  background: rgba(107,58,42,0.28);
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.suitcase__clasp {
  position: absolute;
  bottom: 14px;
  width: 38px;
  height: 22px;
  background: linear-gradient(155deg, #a07840, #7a5030);
  border-radius: 6px;
  border: 1.5px solid rgba(255,210,120,0.35);
  box-shadow: inset 0 1px rgba(255,255,255,0.18);
}

.suitcase__clasp::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: rgba(0,0,0,0.18);
  border-radius: 3px;
}

.suitcase__clasp--l { left: 80px; }
.suitcase__clasp--r { right: 80px; }

.suitcase__sticker {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(212,132,122,0.65);
  letter-spacing: 0.18em;
  border: 1px solid rgba(212,132,122,0.25);
  padding: 4px 10px;
  border-radius: 4px;
  transform: rotate(-3deg);
}

/* Corps intérieur */
.suitcase__body {
  width: 100%;
  min-height: 260px;
  background: var(--cream-texture);
  border: 3px solid rgba(107,58,42,0.9);
  border-top: none;
  border-radius: 6px 6px 16px 16px;
  position: relative;
  overflow: hidden;
}

.suitcase__body::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(107,58,42,0.14);
  border-radius: 10px;
  pointer-events: none;
  z-index: 0;
}

.suitcase__interior {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px 28px;
  position: relative;
  z-index: 1;
}

.equip-slot {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 14px 16px;
  text-align: center;
  box-shadow:
    0 2px 8px rgba(61,31,13,0.09),
    0 6px 18px rgba(61,31,13,0.05);
  position: relative;
  overflow: hidden;
}

.equip-slot::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-soft), var(--pink-light));
}

.equip-slot__icon {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.equip-slot__name {
  font-family: var(--ff-display);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.equip-slot__desc {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--brown-mid);
}

.suitcase__bottom-stripe {
  height: 6px;
  background: linear-gradient(155deg, #5a2918, var(--brown-dark));
  border-radius: 0 0 16px 16px;
  margin: 0 3px;
  margin-top: -3px;
  border: 3px solid rgba(107,58,42,0.9);
  border-top: none;
}

/* ══════════════════════════════════════════════
   6. COMMUNITY MANAGEMENT — 3 cartes
══════════════════════════════════════════════ */
.offers--cm {
  background: var(--brown-dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.offers-intro {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(237,224,208,0.6);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.offers-intro em {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--pink-light);
}

.offers-note {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(237,224,208,0.5);
  line-height: 1.6;
  max-width: 620px;
  margin: 32px auto 0;
  text-align: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 64px;
}

.offer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,132,122,0.22);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.35s;
}

.offer-card:hover {
  border-color: rgba(212,132,122,0.5);
  transform: translateY(-5px);
}

.offer-card__tier {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream-light);
  line-height: 1.1;
  margin-bottom: 4px;
}

.offer-card__sub {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(237,224,208,0.45);
  margin-bottom: 24px;
}

.offer-card__features {
  list-style: none;
  border-top: 1px solid rgba(212,132,122,0.12);
  padding-top: 20px;
  margin-bottom: 24px;
}

.offer-card__features li {
  font-family: var(--ff-body);
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(237,224,208,0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
  align-items: center;
}

.offer-card__features li::before {
  content: '—';
  color: var(--pink-soft);
  opacity: 0.55;
  flex-shrink: 0;
  font-size: 0.7rem;
}

.offer-card__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin: 16px 0 20px;
}

.offer-card__price {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--cream-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.offer-card__period {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(237,224,208,0.45);
}

.offer-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border: 1px solid rgba(212,132,122,0.35);
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream-light);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  box-sizing: border-box;
}

.offer-card__cta:hover {
  background: var(--pink-soft);
  border-color: var(--pink-soft);
  color: var(--white);
}

.offer-card__cta--dark {
  color: var(--brown-dark);
  border-color: rgba(107,58,42,0.28);
}

.offer-card__cta--dark:hover {
  background: var(--pink-soft);
  border-color: var(--pink-soft);
  color: var(--white);
}

.offer-card__cta:focus-visible {
  outline: 2px solid var(--pink-soft);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════════
   7. UGC & CONTENU DE MARQUE
══════════════════════════════════════════════ */
.offers--ugc {
  background: var(--brown-dark);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

/* Grille de prix dans une carte d'offre (UGC : Vidéo / ADS) */
.offer-card__pricelist {
  list-style: none;
  border-top: 1px solid rgba(212,132,122,0.12);
  margin: 4px 0 24px;
}

.offer-card__pricelist li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.offer-card__pricelist li span:first-child {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(237,224,208,0.65);
}

.offer-card__pricelist li span:last-child {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream-light);
  letter-spacing: -0.02em;
}

.offer-card__price--quote {
  font-size: 2.2rem;
}

.offer-card__from {
  flex-basis: 100%;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237,224,208,0.5);
  margin-bottom: 2px;
}

.offers-grid--single {
  grid-template-columns: minmax(0, 380px);
  justify-content: center;
}

.offers-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.offers-split--reverse .offers-split__text  { order: 2; }
.offers-split--reverse .offers-split__cards { order: 1; }

.offers-split__desc {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--brown-mid);
  line-height: 1.8;
  margin: 24px 0 32px;
}

.offers-split__desc em {
  font-style: italic;
  color: var(--brown-dark);
}

.offers-split__desc--targets {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--pink-soft);
  letter-spacing: 0.04em;
  line-height: 2;
  margin: 0 0 28px;
}

.offers-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offers-bullets li {
  font-family: var(--ff-body);
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  gap: 12px;
}

.offers-bullets li::before {
  content: '✦';
  color: var(--pink-soft);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.offers-bullets strong { font-weight: 500; color: var(--brown-dark); }

.offers-split__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Carte UGC */
.ugc-card {
  background: var(--white);
  border: 1px solid var(--cream-texture);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.35s;
}

.ugc-card:hover {
  border-color: rgba(212,132,122,0.5);
  transform: translateY(-3px);
}

.ugc-card__type {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.ugc-card__desc {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--brown-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

.ugc-card__features {
  list-style: none;
  border-top: 1px solid var(--cream-texture);
  padding-top: 18px;
  margin-bottom: 20px;
}

.ugc-card__features li {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--brown-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--cream-texture);
  display: flex;
  gap: 9px;
  align-items: center;
}

.ugc-card__features li::before {
  content: '—';
  color: var(--pink-soft);
  opacity: 0.5;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.ugc-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
}

.ugc-card__from {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--brown-mid);
}

.ugc-card__price {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--brown-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ugc-card__period {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--brown-mid);
}

.ugc-card__price--quote {
  font-size: 1.8rem;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   8. CRÉATION DE CONTENU SUR SITE
══════════════════════════════════════════════ */
.offers--onsite {
  background: var(--brown-dark);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.onsite-card {
  background: var(--white);
  border: 1px solid var(--cream-texture);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(61,31,13,0.06);
}

.onsite-card__drone {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.onsite-card__label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 8px;
}

.onsite-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
}

.onsite-card__price {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--brown-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.onsite-card__note {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--brown-mid);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════
   8. CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.contact__details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact__label {
  font-family: var(--ff-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

.contact__value {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brown-dark);
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.contact__link {
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
  position: relative;
}

.contact__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink-soft);
  transition: width 0.4s ease;
}

.contact__link:hover { color: var(--pink-soft); }
.contact__link:hover::after { width: 100%; }

.contact__link:focus-visible {
  outline: 2px solid var(--pink-soft);
  outline-offset: 4px;
  border-radius: 4px;
}

.contact__brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ══════════════════════════════════════════════
   MARQUEE TICKER
══════════════════════════════════════════════ */
.marquee-band {
  background: var(--brown-dark);
  padding: 18px 0;
  overflow: hidden;
  cursor: default;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-light);
  letter-spacing: 0.1em;
  padding: 0 28px;
}

.marquee-track .msep {
  color: var(--pink-soft);
  font-style: normal;
  padding: 0 4px;
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   STATS — compteurs
══════════════════════════════════════════════ */
.stats {
  background: var(--brown-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,132,122,0.06) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(212, 132, 122, 0.2);
}

.stat-figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--cream-light);
  line-height: 1;
  display: block;
}

.stat-suf {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--pink-soft);
  line-height: 1;
}

.stat-label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(237, 224, 208, 0.55);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   GLITCH — logo au hover
══════════════════════════════════════════════ */
@keyframes glitch {
  0%  { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: none; }
  10% { clip-path: polygon(0 12%, 100% 12%, 100% 28%, 0 28%); transform: translate(-3px, 1px); color: var(--pink-soft); }
  20% { clip-path: polygon(0 55%, 100% 55%, 100% 70%, 0 70%); transform: translate(3px, -1px); }
  30% { clip-path: polygon(0 35%, 100% 35%, 100% 50%, 0 50%); transform: translate(-2px, 2px); color: var(--cream-light); }
  40% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: translate(1px, 0); }
  50% { clip-path: polygon(0 72%, 100% 72%, 100% 90%, 0 90%); transform: translate(-3px, -1px); color: var(--pink-light); }
  60% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: none; }
  100%{ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: none; color: inherit; }
}

.logo__initials.is-glitching {
  animation: glitch 0.5s steps(1) forwards;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--brown-dark);
  padding: 28px 40px;
  text-align: center;
}

.footer p {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(237, 224, 208, 0.5);
  letter-spacing: 0.1em;
}

.footer__credit {
  margin-top: 8px;
  font-size: 0.68rem !important;
  color: rgba(237, 224, 208, 0.32) !important;
  letter-spacing: 0.08em;
}

.footer__credit a {
  color: rgba(237, 224, 208, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}

.footer__credit a:hover { color: var(--pink-light); }

/* ══════════════════════════════════════════════
   RESPONSIVE — tablet (< 960px)
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --section-pad: 80px; }

  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .btn, .offer-card__cta,
  .hero__social, .contact__link, .play-btn,
  .portfolio-item, .equip-slot { cursor: pointer; }

  /* Hero */
  .hero { padding: 80px 0 60px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); text-align: center; gap: 40px; }
  .hero__left  { align-items: center; }
  .hero__right { order: -1; }
  .hero__actions { justify-content: center; }

  /* Tagline — pas de pin sur mobile, padding réduit */
  .tagline { min-height: auto; padding: 80px 0; }
  .tagline__inner { padding: 0 32px; }
  .tagline-line { font-size: clamp(1.9rem, 5.5vw, 3rem); }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 44px; }
  .about__content { text-align: center; }
  .about__body p  { text-align: left; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item { padding: 40px; }
  .stat-item + .stat-item {
    border-left: none;
    border-top: 1px solid rgba(212,132,122,0.2);
  }

  /* Portfolio — scroll natif snap */
  .portfolio-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 36px 0 60px;
  }
  .portfolio-track { padding: 0 40px; }
  .portfolio-item  { scroll-snap-align: center; }

  /* Valise : 2 colonnes */
  .suitcase-scene { margin-top: 50px; }
  .suitcase__interior { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 22px 18px; }
  .suitcase__clasp--l { left: 40px; }
  .suitcase__clasp--r { right: 40px; }

  /* Offres CM — 1 colonne sur tablette */
  .offers-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  /* UGC & Sur site — empilement vertical */
  .offers-split { grid-template-columns: 1fr; gap: 48px; }
  .offers-split--reverse .offers-split__text  { order: 0; }
  .offers-split--reverse .offers-split__cards { order: 1; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .contact__details { align-items: center; }
  .contact__detail { align-items: flex-start; width: 100%; max-width: 320px; }
  .contact__brand { order: -1; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — mobile (< 600px)
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --section-pad: 56px; }

  .container      { padding: 0 20px; }
  .hero__inner    { padding: 0 20px; }
  .tagline__inner { padding: 0 20px; }

  /* Hero iPhone plus petit */
  .iphone--hero { width: 200px; height: 400px; border-radius: 44px; }
  .iphone--hero .iphone__screen { border-radius: 36px; }
  .iphone--hero .iphone__notch  { width: 90px; }

  /* Hero titre — taille réduite pour un retour à la ligne propre */
  .hero__headline { font-size: clamp(1.85rem, 8vw, 2.5rem); }

  /* Tagline */
  .tagline-line { font-size: clamp(1.55rem, 7.5vw, 2.2rem); line-height: 1.35; }
  .tagline__inner { padding: 0 16px; }

  /* About photo */
  .about__photo { width: 260px; height: 350px; }

  /* Stats */
  .stat-item { padding: 36px 24px; }
  .stat-num  { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .stat-suf  { font-size: clamp(1.8rem, 9vw, 2.8rem); }

  /* Portfolio iPhones plus petits sur mobile */
  .iphone { width: 160px; height: 320px; border-radius: 36px; padding: 9px; }
  .iphone__notch { width: 72px; height: 20px; }
  .iphone__screen { border-radius: 28px; }
  .play-btn { width: 44px; height: 44px; }
  .portfolio-track { gap: 24px; padding: 0 24px; }

  /* Valise : 2 colonnes compactes */
  .suitcase-scene { margin-top: 48px; }
  .suitcase__handle-grip { width: 110px; height: 36px; }
  .suitcase__handle { top: -38px; }
  .suitcase__lid    { height: 130px; }
  .suitcase__clasp--l { left: 24px; }
  .suitcase__clasp--r { right: 24px; }
  .suitcase__sticker  { display: none; }
  .suitcase__interior { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 16px 14px; }
  .equip-slot         { padding: 16px 10px 12px; }
  .equip-slot__icon   { height: 56px; }
  .equip-slot__name   { font-size: 0.85rem; }

  /* Offres — ajustements mobile */
  .offers-grid { margin-top: 40px; }
  .offer-card { padding: 32px 24px; }
  .offer-card__price { font-size: 2.2rem; }
  .onsite-card { padding: 36px 24px; }
  .onsite-card__price { font-size: 3rem; }
  .ugc-card { padding: 24px; }
  .ugc-card__price { font-size: 2rem; }

  /* Section header */
  .section-header { margin-bottom: 48px; }

  /* Contact */
  .contact__value { font-size: 1.15rem; }
  .logo--xl .logo__mark  { width: 100px; height: 100px; }
  .logo--xl .logo__initials { font-size: 2.6rem; }

  /* Lightbox : croix plus visible et zone tactile confortable */
  .pf-lightbox__close {
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    background: rgba(61, 31, 13, 0.55);
  }
  /* iPhone agrandi un peu plus bas pour dégager le coin de la croix */
  .pf-lightbox__stage { padding-top: 40px; }
}

/* ══════════════════════════════════════════════
   ACCESSIBILITÉ
══════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--pink-soft); outline-offset: 4px; }

/* NB : on n'applique PAS la coupure d'animations prefers-reduced-motion —
   les animations sont au cœur de l'expérience de ce site vitrine. */

/* ══════════════════════════════════════════════
   LIGHTBOX PORTFOLIO — zoom iPhone + fond flouté
══════════════════════════════════════════════ */
.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 31, 13, 0.42);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.pf-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.pf-lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  cursor: default;
  transform: scale(0.82);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.25, 1), opacity 0.45s ease;
}

.pf-lightbox.is-open .pf-lightbox__stage {
  transform: scale(1);
  opacity: 1;
}

/* iPhone agrandi dans la lightbox — ratio fixe pour ne jamais déformer */
.pf-lightbox .iphone {
  height: min(680px, 80vh);
  width: auto;
  aspect-ratio: 190 / 380;
  box-shadow:
    inset 0 0 0 2px #3A3A3C,
    0 50px 120px rgba(0, 0, 0, 0.5),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

.pf-lightbox .iphone__notch { width: 100px; height: 26px; }

/* Cadre paysage agrandi dans la lightbox (vidéos drone) */
.pf-lightbox .iphone--landscape {
  height: auto;
  width: min(92vw, 900px);
  aspect-ratio: 16 / 9;
  border-radius: 34px;
}
.pf-lightbox .iphone--landscape .iphone__notch {
  width: 26px;
  height: 90px;
}

.pf-lightbox__client {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.pf-lightbox__close {
  position: absolute;
  top: 28px;
  right: 34px;
  z-index: 10;              /* toujours au-dessus de l'iPhone agrandi */
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(253, 250, 247, 0.12);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pf-lightbox__close:hover {
  background: rgba(212, 132, 122, 0.4);
  transform: rotate(90deg);
}
