/* ─── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  height: 200vh;
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(234,135,96,.13) 0%, transparent 70%),
    var(--dark);
}

/* ─── GRILLE FINE CARRÉS HERO ─── */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(234,135,96,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,135,96,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: inset(8% 22% round 20px);
  will-change: clip-path;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(10, 4, 2, 0.2) 0%,
    rgba(10, 4, 2, 0.05) 30%,
    rgba(10, 4, 2, 0.55) 65%,
    rgba(10, 4, 2, 0.92) 100%
  );
  z-index: 1;
  transition: opacity 0.1s;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  pointer-events: none;
}

.hero-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(8rem, 18vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(234, 135, 96, 0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  letter-spacing: -0.03em;
}

.hero-cnt {
  position: absolute;
  z-index: 3;
  bottom: 6rem;
  left: 4rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(234, 135, 96, 0.12);
  border: 1px solid rgba(234, 135, 96, 0.3);
  color: var(--terra-l);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  width: fit-content;
  pointer-events: auto;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(3.2rem, 7.5vw, 8rem);
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: -0.03em;
  overflow: hidden;
  text-align: center;
}
.hero-title-line {
  overflow: hidden;
  display: block;
}
.hero-title em {
  display: block;
  font-style: normal;
  color: var(--terracotta);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(255, 251, 248, 0.68);
  max-width: 420px;
  line-height: 1.72;
  margin-top: 2rem;
  opacity: 0;
  text-align: inherit;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 3.5rem;
  opacity: 0;
  flex-wrap: wrap;
  pointer-events: auto;
  width: 100%;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.28s;
  display: inline-block;
  border: none;
  cursor: none;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--terra-l);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(234, 135, 96, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 251, 248, 0.22);
  transition: all 0.25s;
  display: inline-block;
  cursor: none;
}
.btn-outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  align-items: center;
}
.hero-stat-n {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.hero-stat-l {
  font-size: 0.65rem;
  color: rgba(255, 251, 248, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
  opacity: 0;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-txt {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 251, 248, 0.3);
  writing-mode: vertical-rl;
}

/* ─── HERO → TRANSITION FADE ─────────────────────────── */
.hero-to-transition-fade {
  height: 120px;
  background: linear-gradient(to bottom, var(--dark), var(--dark));
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

/* ─── SIDE NAV ──────────────────────────────────────── */
#side-nav {
  position: fixed;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#side-nav.visible {
  opacity: 1;
  pointer-events: all;
}
.side-nav-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.side-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 251, 248, 0.3);
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.side-nav-item.active .side-nav-dot,
.side-nav-item:hover .side-nav-dot {
  background: var(--terracotta);
  transform: scale(1.4);
}
.side-nav-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 251, 248, 0.0);
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, color 0.3s, opacity 0.3s;
  font-family: var(--font-body);
}
.side-nav-item:hover .side-nav-label {
  max-width: 120px;
  color: rgba(255, 251, 248, 0.75);
}
.side-nav-item.active .side-nav-label {
  max-width: 120px;
  color: var(--terra-l);
}
#side-nav.on-light .side-nav-dot {
  background: rgba(26, 10, 8, 0.22);
}
#side-nav.on-light .side-nav-item.active .side-nav-dot,
#side-nav.on-light .side-nav-item:hover .side-nav-dot {
  background: var(--terracotta);
}
#side-nav.on-light .side-nav-item:hover .side-nav-label {
  color: rgba(26, 10, 8, 0.6);
}
#side-nav.on-light .side-nav-item.active .side-nav-label {
  color: var(--terracotta);
}
@media (max-width: 768px) {
  #side-nav { display: none; }
}

/* ─── PROGRESS BAR (transition text section) ─────────── */
#tt-progress-bar {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#tt-progress-bar.visible {
  opacity: 1;
}
#tt-progress-track {
  width: 1px;
  height: 80px;
  background: rgba(255, 251, 248, 0.15);
  position: relative;
  border-radius: 1px;
}
#tt-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--terracotta);
  border-radius: 1px;
  transition: height 0.1s linear;
}
#tt-progress-label {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 251, 248, 0.3);
  writing-mode: vertical-rl;
  white-space: nowrap;
}

/* ─── SECTION HELPERS ────────────────────────────────── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--terracotta);
}

.line-mask {
  overflow: hidden;
  display: block;
}

/* ─── TRANSITION TEXT ────────────────────────────────── */
#transition-text {
  background: var(--dark);
  height: 550vh;
  position: relative;
}
#transition-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/dysa-studio-services-film-strip-background..png")
    center center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
#transition-text .tt-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8vw;
  z-index: 1;
}
#transition-text .tt-inner {
  text-align: center;
  max-width: 820px;
}
#transition-text .tt-line {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
  display: block;
}
#transition-text .tt-line:first-child {
  margin-bottom: 0.6em;
}
#transition-text .tt-word {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  margin-right: 0.28em;
  transition: opacity 0.5s ease, filter 0.5s ease;
}
#transition-text .tt-word.visible {
  opacity: 1;
  filter: blur(0px);
}
#transition-text .tt-line--welcome {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4em;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}
#transition-text .tt-line--welcome.fade-out {
  opacity: 0;
}

/* ─── SERVICES : CARROUSEL ÉDITORIAL ─────────────────── */
#services {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

.svc-scroll-track {
  position: relative;
}
.svc-sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--cream);
  overflow: hidden;
}

.svc-col-left {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2.2rem 0 0 3rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.svc-col-left-top {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.svc-label-tag {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.svc-label-tag::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--bordeaux);
}

.svc-title-mask {
  overflow: visible;
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  pointer-events: none;
  mix-blend-mode: difference;
}
.svc-title-giant {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 10rem);
  color: #ffffff;
  line-height: 0.88;
  letter-spacing: -0.04em;
  display: block;
  will-change: transform;
  opacity: 1;
}

.svc-counter {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 10, 8, 0.7);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.svc-counter-bar {
  height: 1px;
  background: rgba(26, 10, 8, 0.12);
  width: 48px;
  position: relative;
}
.svc-counter-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--terracotta);
  transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.svc-col-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.svc-desc-wrap {
  overflow: hidden;
  position: relative;
}
.svc-desc-text {
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 26ch;
  will-change: transform;
}
.svc-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.svc-pill {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dark);
  background: rgba(26, 10, 8, 0.07);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.svc-pill.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.svc-col-left-bottom .svc-item-link,
.svc-col-right .svc-item-link {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(26, 10, 8, 0.28);
  padding-bottom: 0.2rem;
  transition: color 0.25s, border-color 0.25s;
}
.svc-col-left-bottom .svc-item-link:hover,
.svc-col-right .svc-item-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.svc-col-left-bottom .svc-item-link .arr,
.svc-col-right .svc-item-link .arr {
  transition: transform 0.25s;
  display: inline-block;
}
.svc-col-left-bottom .svc-item-link:hover .arr,
.svc-col-right .svc-item-link:hover .arr {
  transform: translateX(4px);
}

.svc-col-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.svc-img-stage {
  position: relative;
  width: 40vw;
  height: 46vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(10, 4, 2, 0.18);
  cursor: none;
}

.svc-img-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  filter: blur(0px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, filter 1s ease-in-out;
}
.svc-img-layer.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
.svc-img-layer.leaving {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(14px);
}

.svc-focus-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.svc-img-stage:hover .svc-focus-overlay {
  opacity: 1;
}

.svc-focus-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: rgba(255, 255, 255, 0.8);
  border-style: solid;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.svc-focus-corner.tl { top: 18px; left: 18px; border-width: 2px 0 0 2px; }
.svc-focus-corner.tr { top: 18px; right: 18px; border-width: 2px 2px 0 0; }
.svc-focus-corner.bl { bottom: 18px; left: 18px; border-width: 0 0 2px 2px; }
.svc-focus-corner.br { bottom: 18px; right: 18px; border-width: 0 2px 2px 0; }

.svc-img-stage:hover .svc-focus-corner.tl { top: 14px; left: 14px; }
.svc-img-stage:hover .svc-focus-corner.tr { top: 14px; right: 14px; }
.svc-img-stage:hover .svc-focus-corner.bl { bottom: 14px; left: 14px; }
.svc-img-stage:hover .svc-focus-corner.br { bottom: 14px; right: 14px; }

.svc-focus-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}
.svc-img-stage:hover .svc-focus-cross {
  opacity: 1;
}
.svc-focus-cross::before,
.svc-focus-cross::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}
.svc-focus-cross::before { width: 1px; height: 100%; left: 50%; top: 0; }
.svc-focus-cross::after  { height: 1px; width: 100%; top: 50%; left: 0; }

.svc-focus-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease 0.05s, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.05s;
}
.svc-img-stage:hover .svc-focus-circle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.svc-img-stage:hover .svc-img-layer.active {
  transform: scale(1.035);
}

.svc-grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  transition: opacity 0.35s ease-in-out;
}
.svc-grain-overlay.active {
  opacity: 0.13;
}

.svc-col-right {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.5vw;
  max-width: 65px;
  min-width: 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  z-index: 20;
}

.svc-col-text {
  position: absolute;
  left: calc(50% + 26vw);
  top: 50%;
  transform: translateY(-50%);
  width: 12vw;
  max-width: 180px;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  z-index: 20;
}

.svc-pills-under {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7rem;
  width: 40vw;
  display: flex;
  justify-content: center;
  z-index: 20;
}

.svc-btn-under {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10.5rem;
  z-index: 20;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.svc-col-text .svc-item-link,
.svc-btn-under .svc-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--dark);
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  background: transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.svc-col-text .svc-item-link:hover,
.svc-btn-under .svc-item-link:hover {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.svc-col-text .svc-item-link .arr {
  transition: transform 0.25s;
  display: inline-block;
}
.svc-col-text .svc-item-link:hover .arr {
  transform: translateX(4px);
}

.svc-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  cursor: none;
  border: 1.5px solid transparent;
  transition: border-color 0.35s, opacity 0.35s, transform 0.35s;
  opacity: 0.35;
}
.svc-thumb.active {
  opacity: 1;
  border-color: var(--terracotta);
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(234, 135, 96, 0.25);
}
.svc-thumb:hover:not(.active) {
  opacity: 0.65;
}

.svc-thumbs-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.svc-progress-bar {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background: rgba(26, 10, 8, 0.1);
  z-index: 3;
}
.svc-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--terracotta);
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.svc-row       { display: none; }
.svc-list-wrap { display: none; }
.svc-cursor-img { display: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .svc-sticky-stage { height: 100svh; }
  .svc-col-left { padding: 5rem 0 0 1.5rem; }
  /* image : occupe l'espace entre le header et la zone basse (miniatures + bouton + pills) */
  .svc-col-center { inset: 6.5rem 0 33svh 0; border-radius: 0; }
  .svc-img-stage { border-radius: 12px; }
  /* titre géant : juste sous l'image, lié à la zone basse */
  .svc-title-mask { left: 1.5rem; bottom: calc(33svh - 1rem); }
  .svc-title-giant { font-size: clamp(2.8rem, 13vw, 5rem); }

  /* pills centrées au-dessus du bouton */
  .svc-pills-under {
    bottom: calc(13svh + 3.2rem);
    width: 90vw;
  }
  /* bouton centré */
  .svc-btn-under {
    bottom: calc(13svh + 0.4rem);
  }

  /* miniatures en bas, centrées et contenues */
  .svc-col-right {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    top: auto;
    bottom: calc(3svh + 0.5rem);
    width: auto;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.5rem;
  }
  .svc-thumbs-group { flex-direction: row; gap: 0.4rem; width: auto; }
  .svc-thumb { width: 52px; }
  .svc-progress-bar { display: none; }
}

/* ── SERVICES TABLETTE ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .svc-img-stage { width: 50vw; height: 44vh; }
  .svc-col-text  { left: calc(50% + 27vw); width: 16vw; }
  .svc-col-right { right: .8rem; }
}

/* ── SERVICES PETIT MOBILE (iPhone SE, iPhone 12 mini…) ── */
@media (max-width: 480px) {
  .svc-col-left  { padding: 4.5rem 0 0 1rem; }
  .svc-col-center { inset: 6rem 0 34svh 0; }
  .svc-title-giant { font-size: clamp(2.2rem, 11vw, 4rem); }
  .svc-title-mask { left: 1rem; bottom: calc(34svh - 0.8rem); }
  .svc-pills-under { bottom: calc(14svh + 3rem); width: 92vw; }
  .svc-btn-under  { bottom: calc(14svh + 0.2rem); }
  .svc-col-right  { bottom: calc(3svh + 0.3rem); }
  .svc-thumb { width: 44px; }
  .svc-desc-text { font-size: .72rem; }
}

/* ─── PORTFOLIO — CERCLE ────────────────────────────── */
#portfolio {
  background: var(--cream);
  padding: 7rem 0 8rem;
  position: relative;
}

.pfo-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 4rem 0.3rem;
}
@media (max-width: 600px) {
  .pfo-header { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 0 1.5rem 2.5rem; }
}

.pfo-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pfo-viewall-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  margin-top: 2rem;
}
.pfo-explore-hint {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pfo-explore-hint::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--terracotta);
  display: block;
}
.pfo-viewall-big {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.04em;
  color: var(--dark);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pfo-viewall-big::after {
  content: '→';
  font-style: normal;
  font-size: 0.45em;
  background: var(--dark);
  color: var(--cream);
  border-radius: 100px;
  padding: 0.3em 0.6em;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
  vertical-align: middle;
}
.pfo-viewall-big:hover {
  opacity: 1;
  color: var(--terracotta);
}
.pfo-viewall-big:hover::after {
  opacity: 1;
  transform: translateX(0);
  background: var(--terracotta);
}

.pfo-viewall {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14,6,4,0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s;
  flex-shrink: 0;
}
.pfo-viewall:hover { color: var(--terracotta); }
.pfo-viewall span { transition: transform 0.25s; }
.pfo-viewall:hover span { transform: translateX(5px); }
.pfo-viewall-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-shrink: 0;
}

.pfo-orbit-scene {
  position: relative;
  width: 580px;
  height: 580px;
  margin: 0 auto;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pfo-orbit-ring {
  position: absolute;
  inset: 0;
  animation: orbitSpin 28s linear infinite;
}
.pfo-orbit-ring:hover { animation-play-state: paused; }

.pfo-orbit-item {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 38% 62% 55% 45% / 45% 48% 52% 55%;
  overflow: hidden;
  cursor: pointer;
  animation: orbitCounterSpin 28s linear infinite;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  box-shadow: 0 6px 24px rgba(14,6,4,0.10);
}
@keyframes orbitCounterSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.pfo-orbit-ring:hover .pfo-orbit-item { animation-play-state: paused; }
.pfo-orbit-item:hover {
  box-shadow: 0 12px 40px rgba(14,6,4,0.22);
  transform: rotate(0deg) scale(1.08) !important;
  z-index: 10;
}

.pfo-orbit-item:nth-child(1) { top: calc(290px - 220px - 75px); left: calc(290px - 75px); }
.pfo-orbit-item:nth-child(2) { top: calc(290px - 156px - 75px); left: calc(290px + 156px - 75px); }
.pfo-orbit-item:nth-child(3) { top: calc(290px - 75px);         left: calc(290px + 220px - 75px); }
.pfo-orbit-item:nth-child(4) { top: calc(290px + 156px - 75px); left: calc(290px + 156px - 75px); }
.pfo-orbit-item:nth-child(5) { top: calc(290px + 220px - 75px); left: calc(290px - 75px); }
.pfo-orbit-item:nth-child(6) { top: calc(290px + 156px - 75px); left: calc(290px - 156px - 75px); }
.pfo-orbit-item:nth-child(7) { top: calc(290px - 75px);         left: calc(290px - 220px - 75px); }
.pfo-orbit-item:nth-child(8) { top: calc(290px - 156px - 75px); left: calc(290px - 156px - 75px); }

.pfo-orbit-item:nth-child(2) { border-radius: 55% 45% 38% 62% / 52% 55% 45% 48%; }
.pfo-orbit-item:nth-child(3) { border-radius: 45% 55% 62% 38% / 55% 45% 55% 45%; }
.pfo-orbit-item:nth-child(4) { border-radius: 62% 38% 45% 55% / 48% 52% 48% 52%; }
.pfo-orbit-item:nth-child(5) { border-radius: 38% 62% 55% 45% / 55% 48% 52% 45%; }
.pfo-orbit-item:nth-child(6) { border-radius: 50% 50% 40% 60% / 40% 50% 50% 60%; }
.pfo-orbit-item:nth-child(7) { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
.pfo-orbit-item:nth-child(8) { border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%; }

.pfo-orbit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.pfo-orbit-item:hover .pfo-orbit-img {
  transform: scale(1.1);
}

.pfo-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.pfo-orbit-center img {
  width: 100px;
  display: block;
}

.pfo-tags-col {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 420px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.pfo-tags-track {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  animation: tagsScrollUp 14s linear infinite;
  padding-top: 0;
}
.pfo-tags-col:hover .pfo-tags-track { animation-play-state: paused; }

@keyframes tagsScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.pfo-tag {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14,6,4,0.45);
  cursor: default;
  transition: color 0.25s;
  text-align: center;
}
.pfo-tag:hover { color: var(--dark); }
.pfo-tag.pill {
  border: 1px solid rgba(14,6,4,0.18);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  color: rgba(14,6,4,0.65);
}
.pfo-tag.pill:hover { border-color: var(--dark); color: var(--dark); }

.pfo-bottom-text {
  padding: 4rem 4rem 0;
}
.pfo-big-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin: 0;
}
.pfo-big-title em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--dark);
  opacity: 0.4;
}

/* ─── HORIZONTAL MARQUEE BETWEEN SECTIONS ───────────── */
.marquee-dark {
  background: var(--dark);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255, 251, 248, 0.04);
  border-bottom: 1px solid rgba(255, 251, 248, 0.04);
}

/* ─── ABOUT ──────────────────────────────────────────── */
#about {
  background: var(--cream);
  padding: 10rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  bottom: -4rem;
  left: -2rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(6rem, 14vw, 18rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(26, 10, 8, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-visual { position: relative; }
.about-img-real {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(26, 10, 8, 0.18);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.2);
  transform-origin: center center;
  display: block;
}
.about-photo-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,251,248,0.5) 60%, var(--cream) 100%);
  pointer-events: none;
}
.about-badge-float {
  position: absolute;
  top: 2.5rem;
  right: -2.5rem;
  background: var(--dark);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(10, 4, 2, 0.35);
}
.about-badge-n {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.about-badge-l {
  font-size: 0.68rem;
  color: rgba(255, 251, 248, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.about-content { color: var(--dark); }
.about-content .section-label { color: var(--bordeaux); }
.about-content .section-label::before { background: var(--bordeaux); }
.about-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 2rem;
}
.about-text {
  font-size: 0.9rem;
  color: rgba(10, 4, 2, 0.55);
  line-height: 1.82;
  margin-bottom: 1.1rem;
}
.about-text strong { color: var(--dark); font-weight: 500; }
.about-subhead {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
  margin-bottom: 2.5rem;
}
.skill-pill {
  font-size: 0.75rem;
  padding: 0.38rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(26, 10, 8, 0.12);
  color: rgba(10, 4, 2, 0.55);
  transition: all 0.2s;
}
.skill-pill:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* ─── AVIS ────────────────────────────────────────────── */
#avis {
  padding: 8rem 4rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.avis-bg-number {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(8rem, 16vw, 20rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 251, 248, 0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.avis-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.avis-section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
}
.avis-rating-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 251, 248, 0.04);
  border: 1px solid rgba(255, 251, 248, 0.07);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  backdrop-filter: blur(12px);
}
.avis-rating-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--terracotta);
}
.avis-stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}
.avis-star {
  width: 13px;
  height: 13px;
  background: var(--terracotta);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.avis-rating-label {
  font-size: 0.68rem;
  color: rgba(255, 251, 248, 0.4);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.avis-card {
  background: rgba(255, 251, 248, 0.04);
  border: 1px solid rgba(255, 251, 248, 0.07);
  border-radius: 18px;
  padding: 1.8rem;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  cursor: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
}
.avis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(10, 4, 2, 0.4);
  border-color: rgba(234, 135, 96, 0.22);
}
.avis-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.1rem;
}
.avis-text {
  font-size: 0.88rem;
  color: rgba(255, 251, 248, 0.65);
  line-height: 1.78;
  margin-bottom: 1.6rem;
  font-style: italic;
  flex: 1;
}
.avis-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 251, 248, 0.06);
}
.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avis-name {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.avis-role {
  font-size: 0.7rem;
  color: rgba(255, 251, 248, 0.38);
  margin-top: 0.1rem;
}
.avis-badge {
  background: rgba(234, 135, 96, 0.15);
  color: var(--terra-l);
  border: 1px solid rgba(234, 135, 96, 0.25);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ─── POPUP ──────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 4, 2, 0.65);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 1rem;
}
.popup-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.popup-box {
  background: var(--cream);
  border-radius: 22px;
  padding: 2.5rem;
  max-width: 430px;
  width: 100%;
  position: relative;
  animation: scaleIn 0.3s ease;
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(26, 10, 8, 0.07);
  border: none;
  cursor: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-opt {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1rem;
  border: 1.5px solid rgba(26, 10, 8, 0.08);
  border-radius: 10px;
  cursor: none;
  transition: all 0.2s;
  font-size: 0.82rem;
  color: var(--text-dark);
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  margin-bottom: 0.4rem;
}
.popup-opt:hover,
.popup-opt.selected {
  border-color: var(--terracotta);
  background: rgba(234, 135, 96, 0.05);
}
.popup-worked {
  flex: 1;
  padding: 0.55rem;
  border: 1.5px solid rgba(26, 10, 8, 0.1);
  border-radius: 8px;
  background: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.popup-worked.active {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: rgba(234, 135, 96, 0.05);
}

/* ─── GLOBAL ANIMS ───────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    top: 0; left: 0;
    transform: none;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    background: transparent !important;
    border-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    transition: none !important;
    padding: 0 !important;
    pointer-events: none;
    border-radius: 0 !important;
  }
  nav::before, nav::after { display: none !important; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #navbar .logo-bubble {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-60px);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255, 251, 248, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 251, 248, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    display: flex; align-items: center; justify-content: center;
    padding: 0; z-index: 1001; pointer-events: all;
  }
  #navbar .logo-bubble img { height: 30px; }
  #navbar .ham-bubble {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(8px);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255, 251, 248, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 251, 248, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    display: flex; align-items: center; justify-content: center;
    padding: 0; z-index: 1001; pointer-events: all;
  }
  .hero-sticky { padding: 0 1.5rem; clip-path: inset(10% 5% round 16px); }
  .hero-title { font-size: clamp(2.6rem, 9vw, 4.5rem); }
  .hero-bottom { flex-direction: column; align-items: center; gap: 2rem; }
  .hero-stats  { gap: 2rem; }
  .hero-scroll-hint { display: none; }

  #about {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 6rem 1.5rem;
  }
  .about-badge-float { right: 0; }
  .about-bg-text { display: none; }

  #avis { padding: 6rem 1.5rem; }
  .avis-grid { grid-template-columns: 1fr; }
  .avis-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .avis-bg-number { display: none; }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* ─── MOBILE MOYEN (481px – 768px) ──────────────────── */
@media (min-width: 481px) and (max-width: 768px) {
  .pfo-orbit-scene { width: 380px; height: 380px; }
  .pfo-orbit-item  { width: 100px; height: 100px; }
  .pfo-orbit-item:nth-child(1) { top: calc(190px - 140px - 50px); left: calc(190px - 50px); }
  .pfo-orbit-item:nth-child(2) { top: calc(190px - 99px - 50px);  left: calc(190px + 99px - 50px); }
  .pfo-orbit-item:nth-child(3) { top: calc(190px - 50px);          left: calc(190px + 140px - 50px); }
  .pfo-orbit-item:nth-child(4) { top: calc(190px + 99px - 50px);  left: calc(190px + 99px - 50px); }
  .pfo-orbit-item:nth-child(5) { top: calc(190px + 140px - 50px); left: calc(190px - 50px); }
  .pfo-orbit-item:nth-child(6) { top: calc(190px + 99px - 50px);  left: calc(190px - 99px - 50px); }
  .pfo-orbit-item:nth-child(7) { top: calc(190px - 50px);          left: calc(190px - 140px - 50px); }
  .pfo-orbit-item:nth-child(8) { top: calc(190px - 99px - 50px);  left: calc(190px - 99px - 50px); }
  .pfo-tags-col { display: none; }
  #about { grid-template-columns: 1fr; gap: 3.5rem; padding: 6rem 1.5rem; }
  .about-badge-float { right: 0; }
  .about-bg-text { display: none; }
  .avis-grid { grid-template-columns: 1fr; }
  .avis-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ─── TABLETTE (769px – 1024px) ─────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-cnt  { bottom: 4rem; left: 2rem; right: 2rem; }
  .hero-bottom { flex-wrap: wrap; gap: 2rem; }
  .hero-stats  { gap: 2rem; }
  #about { padding: 7rem 3rem; gap: 4rem; }
  #avis  { padding: 6rem 2.5rem; }
  .avis-grid { grid-template-columns: 1fr 1fr; }
  .svc-img-stage { width: 55vw; height: 42vh; }
  .svc-col-text  { left: calc(50% + 30vw); width: 14vw; }
  .svc-title-mask { left: 2rem; }
  .pfo-orbit-scene { width: 420px; height: 420px; }
  .pfo-orbit-item  { width: 110px; height: 110px; }
  .pfo-orbit-item:nth-child(1) { top: calc(210px - 160px - 55px); left: calc(210px - 55px); }
  .pfo-orbit-item:nth-child(2) { top: calc(210px - 113px - 55px); left: calc(210px + 113px - 55px); }
  .pfo-orbit-item:nth-child(3) { top: calc(210px - 55px);         left: calc(210px + 160px - 55px); }
  .pfo-orbit-item:nth-child(4) { top: calc(210px + 113px - 55px); left: calc(210px + 113px - 55px); }
  .pfo-orbit-item:nth-child(5) { top: calc(210px + 160px - 55px); left: calc(210px - 55px); }
  .pfo-orbit-item:nth-child(6) { top: calc(210px + 113px - 55px); left: calc(210px - 113px - 55px); }
  .pfo-orbit-item:nth-child(7) { top: calc(210px - 55px);         left: calc(210px - 160px - 55px); }
  .pfo-orbit-item:nth-child(8) { top: calc(210px - 113px - 55px); left: calc(210px - 113px - 55px); }
}

/* ─── PETIT MOBILE (≤ 480px) ────────────────────────── */
@media (max-width: 480px) {
  .hero-sticky { clip-path: inset(8% 3% round 12px); }
  .hero-title  { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-cnt    { bottom: 4rem; left: 1rem; right: 1rem; }
  .hero-badge  { font-size: .6rem; padding: .35rem .8rem; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn-primary,
  .btn-outline { width: 100%; text-align: center; padding: .9rem 1.5rem; }
  .hero-stats  { gap: 1.5rem; justify-content: center; }
  .hero-stat-n { font-size: 1.5rem; }
  #about { padding: 5rem 1rem; }
  #avis  { padding: 5rem 1rem; }
  .avis-card { padding: 1.4rem; }
  .pfo-header { padding: 0 1rem 2rem; }
  .pfo-orbit-scene { width: 320px; height: 320px; }
  .pfo-orbit-item  { width: 85px; height: 85px; }
  .pfo-orbit-item:nth-child(1) { top: calc(160px - 120px - 42px); left: calc(160px - 42px); }
  .pfo-orbit-item:nth-child(2) { top: calc(160px - 85px - 42px);  left: calc(160px + 85px - 42px); }
  .pfo-orbit-item:nth-child(3) { top: calc(160px - 42px);          left: calc(160px + 120px - 42px); }
  .pfo-orbit-item:nth-child(4) { top: calc(160px + 85px - 42px);  left: calc(160px + 85px - 42px); }
  .pfo-orbit-item:nth-child(5) { top: calc(160px + 120px - 42px); left: calc(160px - 42px); }
  .pfo-orbit-item:nth-child(6) { top: calc(160px + 85px - 42px);  left: calc(160px - 85px - 42px); }
  .pfo-orbit-item:nth-child(7) { top: calc(160px - 42px);          left: calc(160px - 120px - 42px); }
  .pfo-orbit-item:nth-child(8) { top: calc(160px - 85px - 42px);  left: calc(160px - 85px - 42px); }
  .pfo-tags-col { display: none; }
  .pfo-bottom-text { padding: 2rem 1rem 0; }
}
