{"id":1527,"date":"2025-10-15T14:02:41","date_gmt":"2025-10-15T14:02:41","guid":{"rendered":"https:\/\/studiolrth.com\/?page_id=1527"},"modified":"2026-04-16T08:46:30","modified_gmt":"2026-04-16T08:46:30","slug":"212_hertz","status":"publish","type":"page","link":"https:\/\/studiolrth.com\/en\/212_hertz\/","title":{"rendered":"212 Hertz"},"content":{"rendered":"<section class=\"wp-block-group alignwide has-global-padding is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-fc05645d wp-block-group-is-layout-constrained\" style=\"margin-top:0px;padding-top:6rem;padding-right:1rem;padding-bottom:4.5rem;padding-left:1rem;font-size:clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.464), 1.13rem);font-style:normal;font-weight:400;line-height:1.4\">\n<div class=\"wp-block-group alignfull has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<style>\n.type-container {\n  max-width: 900px;\n  margin: 120px auto;\n  color: #fff;\n  font-family: \"Helvetica Neue\", Arial, sans-serif;\n  font-size: clamp(32px, 4vw, 70px);\n  line-height: 1.9;\n  letter-spacing: 0.05em;\n  text-align: center;\n  font-weight: 200;\n}\n\n.type-block {\n  margin-bottom: 1.2em;\n}\n\n.type-line {\n  min-height: 1.9em;\n}\n\n\/* Curseur-bloc blanc *\/\n.type-caret {\n  display: inline-block;\n  width: 0.45em;\n  height: 0.82em;\n  background: #fff;\n  margin-left: 0.08em;\n  vertical-align: -0.08em;\n  opacity: 0.9;\n  animation: caretBlink 1.1s steps(1) infinite;\n}\n\n@keyframes caretBlink {\n  0%, 55% { opacity: 0.9; }\n  56%, 100% { opacity: 0; }\n}\n\n\/* Sections Gutenberg *\/\n.reveal-section {\n  display: none;\n  opacity: 0;\n  transform: translateY(60px);\n  transition: all 1.5s ease;\n}\n\n.reveal-section.visible {\n  opacity: 1;\n  transform: translateY(0);\n}\n<\/style>\n\n<div class=\"type-container\" id=\"text\"><\/div>\n\n<script>\nconst lang = document.documentElement.lang || \"fr\";\n\nconst texts = {\n  fr: [\n    [\"Ceci n\u2019est pas une image,\", \"mais un mouvement de lumi\u00e8re,\"],\n    [\"car lumi\u00e8re est vie,\", \"besoin essentiel.\"],\n    [\"Deux vibrations,\", \"deux perceptions\u2026\"],\n    [\"Bleu\"],\n    [\"Rouge\"]\n  ],\n  en: [\n    [\"This is not an image,\", \"but a movement of light,\"],\n    [\"because light is life,\", \"an essential need.\"],\n    [\"Two vibrations,\", \"two perceptions\u2026\"],\n    [\"Blue\"],\n    [\"Red\"]\n  ]\n};\n\nconst blocks = texts[lang.startsWith(\"en\") ? \"en\" : \"fr\"];\nconst textEl = document.getElementById(\"text\");\n\nconst baseSpeed = 210;\n\nlet blockIndex = 0;\nlet lineIndex = 0;\nlet wordIndex = 0;\n\nlet currentBlockEl = null;\nlet currentLineEl = null;\nlet caretEl = null;\n\nfunction revealSection(id) {\n  const section = document.getElementById(id);\n  if (!section) return;\n\n  section.style.display = \"block\";\n  setTimeout(() => {\n    section.classList.add(\"visible\");\n  }, 50);\n}\n\nfunction nextDelay(word) {\n  let delay = baseSpeed + Math.random() * 120;\n\n  if (word.endsWith(\",\") || word.endsWith(\".\")) delay += 350;\n  if (word.endsWith(\"\u2026\")) delay += 700;\n\n  return delay;\n}\n\nfunction ensureBlockAndLine() {\n  if (!currentBlockEl) {\n    currentBlockEl = document.createElement(\"div\");\n    currentBlockEl.className = \"type-block\";\n    textEl.appendChild(currentBlockEl);\n  }\n\n  if (!currentLineEl) {\n    currentLineEl = document.createElement(\"div\");\n    currentLineEl.className = \"type-line\";\n    currentBlockEl.appendChild(currentLineEl);\n  }\n\n  if (!caretEl) {\n    caretEl = document.createElement(\"span\");\n    caretEl.className = \"type-caret\";\n  }\n\n  currentLineEl.appendChild(caretEl);\n}\n\nfunction placeCaretAtEnd() {\n  if (!caretEl || !currentLineEl) return;\n  currentLineEl.appendChild(caretEl);\n}\n\nfunction typeNextWord() {\n  if (blockIndex >= blocks.length) {\n    return; \/\/ le curseur reste d\u00e9j\u00e0 \u00e0 la fin du dernier mot\n  }\n\n  const currentBlock = blocks[blockIndex];\n  const currentLine = currentBlock[lineIndex];\n  const words = currentLine.split(\" \");\n  const word = words[wordIndex];\n\n  ensureBlockAndLine();\n\n  \/\/ on enl\u00e8ve le curseur avant d\u2019\u00e9crire\n  if (caretEl.parentNode) {\n    caretEl.parentNode.removeChild(caretEl);\n  }\n\n  if (wordIndex > 0) {\n    currentLineEl.appendChild(document.createTextNode(\" \"));\n  }\n\n  currentLineEl.appendChild(document.createTextNode(word));\n\n  \/\/ on remet le curseur \u00e0 la fin du mot tap\u00e9\n  placeCaretAtEnd();\n\n  if (word === \"Bleu\" || word === \"Blue\") {\n    setTimeout(() => revealSection(\"bleu-section\"), 800);\n  }\n\n  if (word === \"Rouge\" || word === \"Red\") {\n    setTimeout(() => revealSection(\"rouge-section\"), 800);\n  }\n\n  wordIndex++;\n\n  if (wordIndex >= words.length) {\n    lineIndex++;\n    wordIndex = 0;\n    currentLineEl = null;\n\n    if (lineIndex < currentBlock.length) {\n      setTimeout(typeNextWord, 700);\n      return;\n    }\n\n    blockIndex++;\n    lineIndex = 0;\n    currentBlockEl = null;\n    currentLineEl = null;\n\n    if (blockIndex < blocks.length) {\n      setTimeout(typeNextWord, 1100);\n      return;\n    }\n\n    return;\n  }\n\n  setTimeout(typeNextWord, nextDelay(word));\n}\n\ntypeNextWord();\n<\/script>\n\n<style>\n#backToTop {\n  position: fixed;\n  bottom: 30px;\n  right: 30px;\n  width: 44px;\n  height: 44px;\n  border: 1px solid rgba(255,255,255,0.35);\n  border-radius: 50%;\n  background: rgba(255,255,255,0.05);\n  color: white;\n  font-size: 18px;\n  cursor: pointer;\n  opacity: 0;\n  pointer-events: none;\n  transition: all 0.4s ease;\n  backdrop-filter: blur(6px);\n  z-index: 9999;\n}\n\n\/* visible apr\u00e8s scroll *\/\n#backToTop.visible {\n  opacity: 1;\n  pointer-events: auto;\n}\n\n\/* hover subtil *\/\n#backToTop:hover {\n  background: rgba(255,255,255,0.15);\n  transform: scale(1.05);\n}\n<\/style>\n\n<button id=\"backToTop\">\u2191<\/button>\n\n<script>\nconst btn = document.getElementById(\"backToTop\");\n\n\/\/ apparition apr\u00e8s scroll\nwindow.addEventListener(\"scroll\", () => {\n  if (window.scrollY > 300) {\n    btn.classList.add(\"visible\");\n  } else {\n    btn.classList.remove(\"visible\");\n  }\n});\n\n\/\/ retour en haut fluide\nbtn.addEventListener(\"click\", () => {\n  window.scrollTo({\n    top: 0,\n    behavior: \"smooth\"\n  });\n});\n<\/script>\n<\/div>\n\n\n\n<section class=\"wp-block-group alignfull has-global-padding is-content-justification-left is-layout-constrained wp-container-core-group-is-layout-fc05645d wp-block-group-is-layout-constrained\" style=\"margin-top:0px;padding-top:6rem;padding-right:1rem;padding-bottom:4.5rem;padding-left:1rem;font-size:clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.464), 1.13rem);font-style:normal;font-weight:400;line-height:1.4\">\n<div class=\"wp-block-group alignfull reveal-section has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\" id=\"bleu-section\">\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-3b58a09741569a613af6d79e4fc482ee\" style=\"color:#ffffff\">Blue<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-b76fc5a7c8c292b8103dd3b9a6e9d4b9\" style=\"color:#ffffff\">Dense frequency,<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-3dcdca7e0648c445eaa70c130cff71d7\" style=\"color:#ffffff\">light that breathes.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-a54763080684f6bb6485143df059f274\" style=\"color:#ffffff\">That's not what you see.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-e9aacfea9b2ffef8238f14e19881df44\" style=\"color:#ffffff\">but rather what the light reveals.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image alignwide size-large\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-15-bb-identity\/\"><img loading=\"lazy\" decoding=\"async\" width=\"1981\" height=\"1321\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/O-212-15-BB-edited-1.jpg\" alt=\"\" class=\"wp-image-2064\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/O-212-15-BB-edited-1.jpg 1981w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/O-212-15-BB-edited-1-300x200.jpg 300w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/O-212-15-BB-edited-1-1024x683.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/O-212-15-BB-edited-1-768x512.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/O-212-15-BB-edited-1-1536x1024.jpg 1536w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/O-212-15-BB-edited-1-18x12.jpg 18w\" sizes=\"auto, (max-width: 1981px) 100vw, 1981px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-26fbb668953559bff8ae80b0e8af6fbf\" style=\"color:#ffffff\">O-212-15-BB<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image alignwide size-large spectre-section auto-size Color-bleu intensit\u00e9-0_85\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-01-bl-invert-identity\/\"><img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/0-212-01-BL-INVERT-683x1024.jpg\" alt=\"\" class=\"wp-image-1989\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/0-212-01-BL-INVERT-683x1024.jpg 683w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/0-212-01-BL-INVERT-200x300.jpg 200w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/0-212-01-BL-INVERT-768x1152.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/0-212-01-BL-INVERT-1024x1536.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/0-212-01-BL-INVERT-8x12.jpg 8w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/0-212-01-BL-INVERT.jpg 1321w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-535d1fdc095d189dd56880961f20a31d\" style=\"color:#fefefe;line-height:0\">O-212-01-BL-INVERT  <\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image alignwide size-large spectre-section auto-size Color-bleu intensit\u00e9-0_65\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-02-bl-dense-3\/\"><img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-02-BL-DENSE-683x1024.jpg\" alt=\"\" class=\"wp-image-1991\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-02-BL-DENSE-683x1024.jpg 683w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-02-BL-DENSE-200x300.jpg 200w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-02-BL-DENSE-768x1152.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-02-BL-DENSE-1024x1536.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-02-BL-DENSE-8x12.jpg 8w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-02-BL-DENSE.jpg 1321w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-56ee650fab3d06218e7e5d165c60edb4\" style=\"color:#ffffff;line-height:0\">O-212-02-BL-DENSE<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image alignwide size-large has-custom-border spectre-section auto-size Color-bleu intensit\u00e9-0_45\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-03-bl-arche-identity\/\"><img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-03-BL-ARCHE-683x1024.jpg\" alt=\"\" class=\"wp-image-1993\" style=\"border-style:none;border-width:0px\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-03-BL-ARCHE-683x1024.jpg 683w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-03-BL-ARCHE-200x300.jpg 200w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-03-BL-ARCHE-768x1152.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-03-BL-ARCHE-1024x1536.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-03-BL-ARCHE-8x12.jpg 8w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-03-BL-ARCHE.jpg 1321w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-7ffa31aabf85c38fe873ed3bfa912ff4\" style=\"color:#ffffff;line-height:0\">O-212-03-BL-ARCHE   <\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image alignwide size-large spectre-section auto-size Color-bleu intensit\u00e9-0_25\"><img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-04-BL-COMPRESS-683x1024.jpg\" alt=\"\" class=\"wp-image-1995\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-04-BL-COMPRESS-683x1024.jpg 683w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-04-BL-COMPRESS-200x300.jpg 200w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-04-BL-COMPRESS-768x1152.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-04-BL-COMPRESS-1024x1536.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-04-BL-COMPRESS-8x12.jpg 8w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-04-BL-COMPRESS.jpg 1321w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" \/><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-f552f28471220ea1c3eeab68b173fc7a\" style=\"color:#ffffff;line-height:0\">O-212-04-BL-COMPRESS   <\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image alignwide size-large spectre-section auto-size Color-bleu intensit\u00e9-0_10\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-05-bl-interf-identity\/\"><img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-05-BL-INTERF-683x1024.jpg\" alt=\"\" class=\"wp-image-1996\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-05-BL-INTERF-683x1024.jpg 683w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-05-BL-INTERF-200x300.jpg 200w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-05-BL-INTERF-768x1152.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-05-BL-INTERF-1024x1536.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-05-BL-INTERF-8x12.jpg 8w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/O-212-05-BL-INTERF.jpg 1321w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-aecbfc2b90ac18372072419e2bdce296\" style=\"color:#ffffff;line-height:0\">O-212-05-BL-INTERF<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image alignwide size-large spectre-section auto-size Color-bleu intensit\u00e9-0_75\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-06-bl-ciel-identity\/\"><img loading=\"lazy\" decoding=\"async\" width=\"683\" height=\"1024\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02311-Avec-accentuation-NR-copie-1-e1760538339422-683x1024.jpg\" alt=\"\" class=\"wp-image-1529\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02311-Avec-accentuation-NR-copie-1-e1760538339422-683x1024.jpg 683w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02311-Avec-accentuation-NR-copie-1-e1760538339422-200x300.jpg 200w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02311-Avec-accentuation-NR-copie-1-e1760538339422-768x1152.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02311-Avec-accentuation-NR-copie-1-e1760538339422-1024x1536.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02311-Avec-accentuation-NR-copie-1-e1760538339422.jpg 1321w\" sizes=\"auto, (max-width: 683px) 100vw, 683px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-cfde245caa047c2652a5727ab2dce1a0\" style=\"color:#fffefe;line-height:0\">O-212-06-BL-CIEL   <\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image alignwide size-large spectre-section auto-size Color-bleu intensit\u00e9-0_50\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-07-bl-circ-identity\/\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02287-Avec-accentuation-NR-copie-1024x683.jpg\" alt=\"\" class=\"wp-image-1543\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02287-Avec-accentuation-NR-copie-1024x683.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02287-Avec-accentuation-NR-copie-300x200.jpg 300w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02287-Avec-accentuation-NR-copie-768x512.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02287-Avec-accentuation-NR-copie-1536x1024.jpg 1536w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02287-Avec-accentuation-NR-copie.jpg 1981w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-b733a5745ea76d88a118e0c90a9b06e8\" style=\"color:#ffffff;line-height:0\">O-212-07-BL-CIRC    <\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group alignfull reveal-section has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\" id=\"rouge-section\">\n<p class=\"has-text-align-center has-text-color has-link-color has-x-large-font-size wp-elements-786a81afd3d093e561bc3a7bdab40770\" style=\"color:#ffffff\"><br>Red<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-1beb46b95bf5a31abbfcacefaa374fa3\" style=\"color:#ffffff\">Dense frequency,<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-75d6e9f26a11bcf728ac617b39f4dcb3\" style=\"color:#ffffff\">light and voltage.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-f10f46f8a08967fe60e28c462029a040\" style=\"color:#ffffff\">Ce n'est pas ce que tu vois,<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-51b41063477779e27570d8186fd8fd76\" style=\"color:#ffffff\">But what the light reveals.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image size-large spectre-section auto-size Color-rouge intensit\u00e9-0_35\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-10-bm-rg-identiyty\/\"><img loading=\"lazy\" decoding=\"async\" width=\"1981\" height=\"1321\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/DSC02246-2-edited-1.jpg\" alt=\"\" class=\"wp-image-2061\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/DSC02246-2-edited-1.jpg 1981w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/DSC02246-2-edited-1-300x200.jpg 300w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/DSC02246-2-edited-1-1024x683.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/DSC02246-2-edited-1-768x512.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/DSC02246-2-edited-1-1536x1024.jpg 1536w, https:\/\/studiolrth.com\/wp-content\/uploads\/2026\/04\/DSC02246-2-edited-1-18x12.jpg 18w\" sizes=\"auto, (max-width: 1981px) 100vw, 1981px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-80937bf8d8b5d01b7662f8a1c4b1a49f\" style=\"color:#ffffff;line-height:0\">O-212-10-BM-RG  <\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large spectre-section auto-size Color-rouge intensit\u00e9-0_50\"><a href=\"https:\/\/studiolrth.com\/en\/o-212-08-bl-rouge-identity\/\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02291-Avec-accentuation-NR-copie-1024x683.jpg\" alt=\"\" class=\"wp-image-1544\" srcset=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02291-Avec-accentuation-NR-copie-1024x683.jpg 1024w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02291-Avec-accentuation-NR-copie-300x200.jpg 300w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02291-Avec-accentuation-NR-copie-768x512.jpg 768w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02291-Avec-accentuation-NR-copie-1536x1024.jpg 1536w, https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/10\/DSC02291-Avec-accentuation-NR-copie.jpg 1981w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-8883af3b3d17239a5324ff8fb29cde28\" style=\"color:#ffffff;line-height:0\">O-212-08-BL-ROUGE-identity<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-d35b52550bcce3ab93c7d031ac54a112\" style=\"color:#ffffff\">La \"<strong>Kinetic photography<\/strong>\" est n\u00e9e.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-5adb5b0eaaf2ca8c64dcdcff22084706\" style=\"color:#ffffff\">Cette apparition n'est pas fixe.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-b0502b25ed98b95f73dcfa8d59d4e8be\" style=\"color:#ffffff\">Elle d\u00e9pend du regard, <\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-690fa48d117f49955c38562ff9c5e953\" style=\"color:#ffffff\">du moment, <\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-90dffb65b12b3427ab14bd045370aa91\" style=\"color:#ffffff\">de la lumi\u00e8re.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-f6ee5460ce0e90fd52d9952736005d80\" style=\"color:#ffffff\">Chaque oeuvre se construit <\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-e2a37c911038d7785c4b318b7a4f6e1b\" style=\"color:#ffffff\">dans cette relation.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-cadcfcbbf0e8107839bb225576f1cefb\" style=\"color:#ffffff\">Entre ce qui est l\u00e0, <\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-large-font-size wp-elements-2600533f4ea4bdbe3af4f23884f19201\" style=\"color:#ffffff\">et celui qui la regarde.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-video\"><video height=\"1440\" style=\"aspect-ratio: 1080 \/ 1440;\" width=\"1080\" controls src=\"https:\/\/studiolrth.com\/wp-content\/uploads\/2025\/11\/212HrtZ_TmlpS_InstA.mp4\"><\/video><\/figure>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-07f5426737b7f6ff4735243b1736d490\" style=\"color:#ffffff\">Nothing appears all at once.<br>Everything reveals itself slowly, to those who take the time to look.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-adc6374b4f5cd1c736efee935fe79de8\" style=\"color:#ffffff\"><em>212 hertz<\/em>&nbsp;is a passage through the visible.<br>A frequency of light, a heartbeat of moments.<br>The image forms and dissolves, brightness shifts, the day breathes.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-7f1f7e7e59d2277fd9d1717ab993804d\" style=\"color:#ffffff\">Here, matter is light.<br>It oscillates between presence and absence, between appearance and disappearance.<br>What seems still is not: every vibration, every nuance, every breath of time transforms the surface.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-9b7fef2425734a8c143e984de0e9e5c5\" style=\"color:#ffffff\">To look becomes a gesture.<br>To come closer, to move away, to return: with each shift, another depth appears.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-4475533b43efca41307f07dc056f80d4\" style=\"color:#ffffff\"><br>Nothing is explained, everything is&nbsp;<strong>evoked<\/strong>&nbsp;\u2014 in the silence between two beats, in the transparency of sound and image.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-5b114132f2b6ceb3c496350dc60e170d\" style=\"color:#ffffff\"><em>L'oeuvre<\/em>&nbsp;is not a projection of reality:<br>it is its resonance.<br>A space where light thinks, where time listens.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-1ab1c00cb6b0455374c0601952d71326\" style=\"color:#ffffff\">Light is not an image.<br>It is a wave. Energy that collides with matter.<br>Each surface responds according to its density, structure and frequency.<br>Red is slow, blue is fast.<br>Metal reflects, concrete absorbs, glass transmits<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-fd84bc2e4af69d2947221144dcb71744\" style=\"color:#ffffff\">I work on these tensions.<br>The image is not created, it emerges \u2014 or not.<br>Depending on the time of day, the season, the latitude.<br>Depending on the harmony between light, sound and matter.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-a3ee2230ddca5da31c12d69afc014c02\" style=\"color:#ffffff\">L'oeuvre devient un instrument, pas une repr\u00e9sentation.<br>A trace of resonance.<br>A measure of reality.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-db8fc291d89986aab064c21c18a71157\" style=\"color:#ffffff;line-height:1.5\">It is no longer a simple recording.<br>It becomes a&nbsp;<strong>sensitive instrument,<\/strong>, a tuning fork between heaven and earth.<br>It captures light in its movement \u2014 an image that only reveals itself when all frequencies are in tune.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-5f3980e0de1684398d8ee5118eb320d2\" style=\"color:#ffffff\">The result is not fixed: it lives, it varies.<br>Sometimes invisible, sometimes dazzling.<br>Like a song of light born at the intersection of time and space.<br>Colour, sound, matter, and the exact moment.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-b3c9aa1aad5faba033e83244b8b56e86\" style=\"color:#ffffff\">We make a \u201csound analogy\u201d of colour: an acoustic interpretation of wavelength.<\/p>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color has-medium-font-size wp-elements-1e5fda0c4b889ee842387fe09c701b52 translation-block\" style=\"color:#ffffff\">The work becomes an instrument, not a representation.\nA trace of resonance.\nA measure of reality.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-text-align-center has-text-color has-link-color wp-elements-16d56569696fc0a0c5bec2113229d866\" style=\"color:#ffffff\">The colors displayed on this website may slightly differ from the original artworks due to variations in screens, calibration, and viewing environments.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"has-text-color has-link-color wp-elements-d5dfeff2e9c9cbc70985287bcb57b595\" style=\"color:#ffffff\">\/Collaboration with&nbsp;<strong><a href=\"https:\/\/bunker.gallery\">Bunker Gallery<\/a><\/strong>&nbsp;in&nbsp;<strong><a href=\"https:\/\/affordableartfair.com\/nl\/\">Affordable Art Fair<\/a><\/strong>&nbsp;Hamburg 25\u2032<\/p>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-001560bb1776c2cf18a89648ef66e46c\" style=\"color:#ffffff\">\/\"Vitrines212\" repr\u00e9sent\u00e9 \u00e0 Bruxelles \u00e0 la <a href=\"https:\/\/www.lapharmacieanglaise.com\" target=\"_blank\" rel=\"noopener\" title=\"Pharmacie Anglaise\">Pharmacie Anglaise<\/a> cocktail Bar 25'<\/p>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-73d78ce6d6018316cc7e0037cc1e13e4\" style=\"color:#ffffff\">\/Expo @everybodyfitaalst \u00e0 Alost 25'<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/section>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>\u2191 Bleu Fr\u00e9quence lente, lumi\u00e8re qui respire. Ce n\u2019est pas ce que tu vois, mais bien ce que la lumi\u00e8re laisse appara\u00eetre. O-212-15-BB O-212-01-BL-INVERT O-212-02-BL-DENSE O-212-03-BL-ARCHE O-212-04-BL-COMPRESS O-212-05-BL-INTERF O-212-06-BL-CIEL O-212-07-BL-CIRC Rouge Fr\u00e9quence dense, lumi\u00e8re et tension. Ce n&rsquo;est pas ce que tu vois, Mais ce que la lumi\u00e8re r\u00e9v\u00e8le. O-212-10-BM-RG O-212-08-BL-ROUGE-identity La \u00ab\u00a0photographie cin\u00e9tique\u00a0\u00bb est [&hellip;]<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"footnotes":""},"class_list":["post-1527","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/studiolrth.com\/en\/wp-json\/wp\/v2\/pages\/1527","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/studiolrth.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/studiolrth.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/studiolrth.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studiolrth.com\/en\/wp-json\/wp\/v2\/comments?post=1527"}],"version-history":[{"count":167,"href":"https:\/\/studiolrth.com\/en\/wp-json\/wp\/v2\/pages\/1527\/revisions"}],"predecessor-version":[{"id":2466,"href":"https:\/\/studiolrth.com\/en\/wp-json\/wp\/v2\/pages\/1527\/revisions\/2466"}],"wp:attachment":[{"href":"https:\/\/studiolrth.com\/en\/wp-json\/wp\/v2\/media?parent=1527"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}