{"id":4795,"date":"2026-08-21T00:35:50","date_gmt":"2026-08-21T00:35:50","guid":{"rendered":"https:\/\/pearlresorts.com\/?page_id=4795"},"modified":"2026-09-03T05:40:28","modified_gmt":"2026-09-03T05:40:28","slug":"festive-season-le-tikehau","status":"publish","type":"page","link":"https:\/\/pearlresorts.com\/fr\/festive-season-le-tikehau\/","title":{"rendered":"Festive Season &#8211; Le Tikehau"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4795\" class=\"elementor elementor-4795\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-99f0c12 e-con e-atomic-element e-flexbox-base e-99f0c12-9d3463b \" data-id=\"99f0c12\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"99f0c12\" data-e-type=\"e-flexbox\" data-id=\"99f0c12\">\n    \t\t<div class=\"elementor-element elementor-element-62e5b43c elementor-widget elementor-widget-html\" data-id=\"62e5b43c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"sky\">\n  <div id=\"shooting-star\"><\/div>\n  <canvas id=\"sky-canvas\"><\/canvas>\n<\/div>\n\n<style>\n  #sky {\n    position: fixed;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    height: 100dvh;\n    z-index: -1;\n    pointer-events: none;\n    background: #080B18;\n    overflow: hidden;\n  }\n\n  #sky::after {\n    content: '';\n    position: absolute;\n    inset: 0;\n    background-image: url(\"data:image\/svg+xml;utf8,<svg xmlns='http:\/\/www.w3.org\/2000\/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'\/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.09 0'\/><\/filter><rect width='100%25' height='100%25' filter='url(%23n)'\/><\/svg>\");\n    opacity: 0.85;\n    mix-blend-mode: overlay;\n    pointer-events: none;\n  }\n  #sky-canvas {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    opacity: 0;\n    transition: opacity 0.6s ease;\n    pointer-events: none;\n  }\n\n  #shooting-star {\n    position: absolute;\n    top: var(--ss-top, 18%);\n    left: var(--ss-left, 65%);\n    width: 3px;\n    height: 3px;\n    border-radius: 50%;\n    background: #ffffff;\n    opacity: 0;\n    box-shadow:\n      0 0 4px 1px rgba(255, 255, 255, 0.9),\n      -80px 25px 12px -4px rgba(255, 255, 255, 0);\n  }\n  #shooting-star.is-active {\n    animation: shooting-star-fly 0.5s cubic-bezier(0.3, 0, 0.4, 1) forwards;\n  }\n  @keyframes shooting-star-fly {\n    0% {\n      opacity: 0;\n      transform: translate(0, 0);\n    }\n    12% {\n      opacity: 1;\n    }\n    75% {\n      opacity: 1;\n    }\n    100% {\n      opacity: 0;\n      transform: translate(var(--ss-dx, -320px), var(--ss-dy, 170px));\n    }\n  }\n<\/style>\n\n<script>\n(function() {\n  const sky = document.getElementById('sky');\n  const canvas = document.getElementById('sky-canvas');\n  const ctx = canvas.getContext('2d');\n  const shootingStar = document.getElementById('shooting-star');\n\n  \/\/ Respecte la pr\u00e9f\u00e9rence syst\u00e8me \"r\u00e9duire les animations\" \u2014 on saute directement\n  \/\/ \u00e0 l'\u00e9tat final (nuit \u00e9toil\u00e9e) plut\u00f4t que de jouer la s\u00e9quence compl\u00e8te.\n  const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n\n  \/\/ --- Fond fixe (nuit \u00e9toil\u00e9e d\u00e8s l'ouverture) ; seule la dur\u00e9e sert\n  \/\/     \u00e0 cadencer l'apparition progressive des \u00e9toiles ---\n  const SKY_COLOR = [8, 11, 24]; \/\/ #080B18 \u2014 nuit \u00e9toil\u00e9e\n  const STAR_FADE_DURATION = 1800; \/\/ ms, dur\u00e9e de l'apparition des \u00e9toiles\n  const TOTAL_DURATION = STAR_FADE_DURATION;\n\n  let W = window.innerWidth;\n  let VH = window.innerHeight;\n  let dpr = window.devicePixelRatio || 1;\n\n  const bandAngle = -0.45;\n\n  \/\/ --- G\u00e9n\u00e8re une teinte \"type d'\u00e9toile\" r\u00e9aliste : la plupart proches du blanc,\n  \/\/     avec une l\u00e9g\u00e8re variation vers le bleu, le jaune ou l'orang\u00e9 (classification\n  \/\/     stellaire simplifi\u00e9e O\/B\/A\/F\/G\/K\/M), plut\u00f4t que des \u00e9toiles 100% blanches ---\n  function randomStarTint() {\n    const r = Math.random();\n    let hue, saturation;\n    if (r < 0.55) {\n      hue = 0; saturation = 0; \/\/ blanc pur, majorit\u00e9 des \u00e9toiles\n    } else if (r < 0.75) {\n      hue = 215; saturation = 25 + Math.random() * 15; \/\/ bleut\u00e9 (\u00e9toiles chaudes)\n    } else if (r < 0.92) {\n      hue = 45; saturation = 20 + Math.random() * 20; \/\/ jaun\u00e2tre\n    } else {\n      hue = 25; saturation = 25 + Math.random() * 20; \/\/ orang\u00e9 (\u00e9toiles froides, plus rares)\n    }\n    return { hue, saturation };\n  }\n\n  const stars = [];\n\n  const bgCount = Math.round(400 * (W \/ 1400));\n  for (let i = 0; i < bgCount; i++) {\n    const tint = randomStarTint();\n    stars.push({\n      x: Math.random() * W,\n      y: Math.random() * VH,\n      size: Math.random() * 1.8 + 0.8,\n      baseOpacity: Math.random() * 0.5 + 0.18,\n      phase: Math.random() * Math.PI * 2,\n      speed: Math.random() * 0.7 + 0.5,\n      depth: Math.random() * 0.6 + 0.2,\n      big: false,\n      hue: tint.hue,\n      sat: tint.saturation\n    });\n  }\n\n  const bigCount = Math.round(16 * (W \/ 1400));\n  for (let i = 0; i < bigCount; i++) {\n    const tint = randomStarTint();\n    stars.push({\n      x: Math.random() * W,\n      y: Math.random() * VH,\n      size: Math.random() * 1.6 + 2.6,\n      baseOpacity: Math.random() * 0.35 + 0.55,\n      phase: Math.random() * Math.PI * 2,\n      speed: Math.random() * 0.5 + 0.3,\n      depth: Math.random() * 0.4 + 0.15,\n      big: true,\n      hue: tint.hue,\n      sat: tint.saturation\n    });\n  }\n\n  const bandCount = Math.round(600 * (W \/ 1400));\n  for (let i = 0; i < bandCount; i++) {\n    const t = Math.random();\n    const alongBand = (t - 0.5) * Math.max(W, VH) * 1.6;\n    const spreadFactor = 60 + Math.abs(Math.sin(t * Math.PI)) * 140;\n    const spread = (Math.random() - 0.5) * spreadFactor;\n\n    const cx = W \/ 2 + alongBand * Math.cos(bandAngle) - spread * Math.sin(bandAngle);\n    const cy = VH \/ 2 + alongBand * Math.sin(bandAngle) + spread * Math.cos(bandAngle);\n\n    if (cx < -50 || cx > W + 50 || cy < -50 || cy > VH + 50) continue;\n\n    const tint = randomStarTint();\n    stars.push({\n      x: cx,\n      y: cy,\n      size: Math.random() * 1.8 + 0.6,\n      baseOpacity: Math.random() * 0.4 + 0.12,\n      phase: Math.random() * Math.PI * 2,\n      speed: Math.random() * 0.7 + 0.5,\n      depth: Math.random() * 0.5 + 0.15,\n      big: false,\n      hue: tint.hue,\n      sat: tint.saturation\n    });\n  }\n\n  \/\/ --- Amas d'\u00e9toiles (clusters) : 2 \u00e0 3 petits groupes resserr\u00e9s, comme de vrais\n  \/\/     amas ouverts, plut\u00f4t qu'une distribution uniquement al\u00e9atoire uniforme ---\n  const clusterCount = 2 + Math.round(Math.random()); \/\/ 2 ou 3\n  for (let c = 0; c < clusterCount; c++) {\n    const clusterX = Math.random() * W;\n    const clusterY = Math.random() * VH * 0.75; \/\/ \u00e9vite le bas de l'\u00e9cran\n    const clusterStars = 8 + Math.floor(Math.random() * 8); \/\/ 8 \u00e0 15\n    const clusterRadius = 35 + Math.random() * 30;\n\n    for (let i = 0; i < clusterStars; i++) {\n      const angle = Math.random() * Math.PI * 2;\n      const dist = Math.random() * clusterRadius;\n      const tint = randomStarTint();\n      stars.push({\n        x: clusterX + Math.cos(angle) * dist,\n        y: clusterY + Math.sin(angle) * dist,\n        size: Math.random() * 1.4 + 0.7,\n        baseOpacity: Math.random() * 0.45 + 0.25,\n        phase: Math.random() * Math.PI * 2,\n        speed: Math.random() * 0.7 + 0.5,\n        depth: Math.random() * 0.5 + 0.2,\n        big: false,\n        hue: tint.hue,\n        sat: tint.saturation\n      });\n    }\n  }\n\n  \/\/ --- Voie lact\u00e9e : halos radiaux, g\u00e9n\u00e9r\u00e9s une fois (positions relatives \u00e0 W\/VH\n  \/\/     courants), avec leur propre profondeur de parallax \u2014 plus faible que les\n  \/\/     \u00e9toiles, pour para\u00eetre plus lointaine\/en arri\u00e8re-plan ---\n  const MILKY_WAY_DEPTH = 0.12;\n  let milkyWayBlobs = [];\n\n  function generateMilkyWayBlobs() {\n    milkyWayBlobs = [];\n    const blobCount = Math.round(90 * (W \/ 1400));\n    const bandLength = Math.max(W, VH) * 1.6;\n\n    for (let i = 0; i < blobCount; i++) {\n      const t = Math.random();\n      const alongBand = (t - 0.5) * bandLength;\n      const spreadFactor = 55 + Math.abs(Math.sin(t * Math.PI)) * 130;\n      const spread = (Math.random() - 0.5) * spreadFactor;\n\n      const cx = W \/ 2 + alongBand * Math.cos(bandAngle) - spread * Math.sin(bandAngle);\n      const cy = VH \/ 2 + alongBand * Math.sin(bandAngle) + spread * Math.cos(bandAngle);\n\n      if (cx < -200 || cx > W + 200 || cy < -200 || cy > VH + 200) continue;\n\n      milkyWayBlobs.push({\n        x: cx,\n        y: cy,\n        radius: 90 + Math.random() * 160,\n        peakAlpha: 0.012 + Math.random() * 0.018\n      });\n    }\n  }\n  generateMilkyWayBlobs();\n\n  const textEls = document.querySelectorAll('[data-sky-text]');\n\n  \/\/ --- Parallax souris (desktop) ---\n  let mouseX = 0, mouseY = 0;\n  let offsetX = 0, offsetY = 0;\n\n  window.addEventListener('mousemove', (e) => {\n    mouseX = (e.clientX \/ W - 0.5) * 2;\n    mouseY = (e.clientY \/ VH - 0.5) * 2;\n  }, { passive: true });\n\n  \/\/ --- Parallax scroll (tactile) ---\n  const isTouchDevice = window.matchMedia('(hover: none) and (pointer: coarse)').matches;\n  let lastScrollYForDrift = window.scrollY || window.pageYOffset;\n  let scrollDrift = 0;\n  const SCROLL_DRIFT_MAX = 1;\n\n  function resizeCanvas() {\n    dpr = window.devicePixelRatio || 1;\n    canvas.width = W * dpr;\n    canvas.height = VH * dpr;\n    ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\n  }\n  resizeCanvas();\n\n  function regenerate() {\n    const oldW = W, oldVH = VH;\n    W = window.innerWidth;\n    VH = window.innerHeight;\n    const scaleX = W \/ oldW;\n    const scaleY = VH \/ oldVH;\n    stars.forEach(s => {\n      s.x *= scaleX;\n      s.y *= scaleY;\n    });\n    resizeCanvas();\n    generateMilkyWayBlobs();\n  }\n  window.addEventListener('resize', regenerate);\n\n  \/\/ Fond fixe d\u00e8s l'ouverture \u2014 plus de transition de couleur\n  sky.style.background = 'rgb(' + SKY_COLOR[0] + ',' + SKY_COLOR[1] + ',' + SKY_COLOR[2] + ')';\n  \/\/ Texte : couleur claire fixe d\u00e8s le d\u00e9part, puisque le fond est sombre d\u00e8s l'ouverture\n  textEls.forEach(el => { el.style.color = '#FBFAF6'; });\n\n  const startTime = performance.now() - (prefersReducedMotion ? TOTAL_DURATION : 0);\n\n  function render(now) {\n    const elapsed = now - startTime;\n\n    if (isTouchDevice) {\n      const currentScrollYForDrift = window.scrollY || window.pageYOffset;\n      const deltaForDrift = currentScrollYForDrift - lastScrollYForDrift;\n      lastScrollYForDrift = currentScrollYForDrift;\n      scrollDrift += deltaForDrift * 0.012;\n      scrollDrift = Math.max(-SCROLL_DRIFT_MAX, Math.min(SCROLL_DRIFT_MAX, scrollDrift));\n      scrollDrift *= 0.94;\n      offsetX += (scrollDrift - offsetX) * 0.05;\n      offsetY += (scrollDrift * 0.6 - offsetY) * 0.05;\n    } else {\n      offsetX += (mouseX - offsetX) * 0.05;\n      offsetY += (mouseY - offsetY) * 0.05;\n    }\n\n    \/\/ --- Parallax de scroll : d\u00e9cale l\u00e9g\u00e8rement les \u00e9toiles selon leur\n    \/\/     profondeur, peu importe l'appareil. \"Wrap\" vertical pour que\n    \/\/     l'effet reste fluide m\u00eame sur une page tr\u00e8s longue, plut\u00f4t que\n    \/\/     de finir \"vide\" apr\u00e8s trop de scroll. ---\n    const currentScrollY = window.scrollY || window.pageYOffset;\n    const scrollParallaxStrength = 0.06;\n\n    \/\/ Les \u00e9toiles apparaissent progressivement d\u00e8s le chargement, sur STAR_FADE_DURATION\n    const starVisibility = Math.max(0, Math.min(1, elapsed \/ STAR_FADE_DURATION));\n    canvas.style.opacity = starVisibility > 0 ? '1' : '0';\n\n    const t = now \/ 1000;\n    const maxParallax = 18;\n\n    ctx.clearRect(0, 0, W, VH);\n\n    \/\/ --- Voie lact\u00e9e d'abord (arri\u00e8re-plan), profondeur de parallax r\u00e9duite ---\n    if (starVisibility > 0 && milkyWayBlobs.length) {\n      const mwPx = offsetX * maxParallax * MILKY_WAY_DEPTH;\n      const mwPy = offsetY * maxParallax * MILKY_WAY_DEPTH;\n      const mwOpacity = starVisibility * 0.6;\n\n      ctx.save();\n      ctx.globalCompositeOperation = 'lighter';\n      ctx.globalAlpha = mwOpacity;\n      ctx.translate(mwPx, mwPy);\n\n      for (let i = 0; i < milkyWayBlobs.length; i++) {\n        const blob = milkyWayBlobs[i];\n        const grad = ctx.createRadialGradient(blob.x, blob.y, 0, blob.x, blob.y, blob.radius);\n        grad.addColorStop(0, 'rgba(230, 234, 250, ' + blob.peakAlpha.toFixed(4) + ')');\n        grad.addColorStop(1, 'rgba(230, 234, 250, 0)');\n        ctx.fillStyle = grad;\n        ctx.beginPath();\n        ctx.arc(blob.x, blob.y, blob.radius, 0, Math.PI * 2);\n        ctx.fill();\n      }\n      ctx.restore();\n    }\n\n    \/\/ --- \u00c9toiles (premier plan), profondeur de parallax individuelle ---\n    ctx.save();\n    ctx.globalCompositeOperation = 'source-over';\n\n    for (let i = 0; i < stars.length; i++) {\n      const s = stars[i];\n      const twinkle = 0.5 + 0.5 * Math.sin(t * s.speed + s.phase);\n      const opacity = starVisibility * s.baseOpacity * (0.55 + twinkle * 0.45);\n      if (opacity <= 0.003) continue;\n\n      const px = s.x + offsetX * maxParallax * s.depth;\n      let py = s.y + offsetY * maxParallax * s.depth;\n\n      \/\/ D\u00e9calage de scroll par profondeur, avec boucle verticale pour\n      \/\/ que l'effet reste subtil et continu peu importe la longueur de page\n      const scrollShift = (-currentScrollY * scrollParallaxStrength * s.depth) % VH;\n      py = ((py + scrollShift) % VH + VH) % VH;\n\n      ctx.globalAlpha = opacity;\n      ctx.fillStyle = s.sat > 0\n        ? 'hsl(' + s.hue + ', ' + s.sat.toFixed(0) + '%, 92%)'\n        : '#ffffff';\n\n      ctx.beginPath();\n      ctx.arc(px, py, s.size \/ 2, 0, Math.PI * 2);\n      ctx.fill();\n\n      if (s.big) {\n        ctx.save();\n        ctx.globalAlpha = opacity * 0.4;\n        const glow = ctx.createRadialGradient(px, py, 0, px, py, s.size * 2.4);\n        glow.addColorStop(0, 'rgba(255,255,255,0.6)');\n        glow.addColorStop(1, 'rgba(255,255,255,0)');\n        ctx.fillStyle = glow;\n        ctx.beginPath();\n        ctx.arc(px, py, s.size * 2.4, 0, Math.PI * 2);\n        ctx.fill();\n        ctx.restore();\n      }\n    }\n    ctx.restore();\n\n    \/\/ Ne replanifie la frame suivante que si l'onglet est visible \u2014\n    \/\/ \u00e9vite de consommer CPU\/batterie inutilement en arri\u00e8re-plan.\n    if (!document.hidden) {\n      requestAnimationFrame(render);\n    }\n  }\n\n  requestAnimationFrame(render);\n\n  \/\/ Reprend la boucle d\u00e8s que l'onglet redevient visible (elle s'\u00e9tait\n  \/\/ arr\u00eat\u00e9e d'elle-m\u00eame dans render() faute de nouvelle frame planifi\u00e9e).\n  document.addEventListener('visibilitychange', () => {\n    if (!document.hidden) {\n      requestAnimationFrame(render);\n    }\n  });\n\n  \/\/ --- \u00c9toile filante : passages r\u00e9currents, position\/trajectoire al\u00e9atoires ---\n  if (!prefersReducedMotion) {\n    function triggerShootingStar() {\n      const startTop = 5 + Math.random() * 35;\n      const startLeft = 20 + Math.random() * 60;\n\n      const distance = 220 + Math.random() * 180;\n      const angle = (20 + Math.random() * 25) * (Math.PI \/ 180);\n      const direction = Math.random() < 0.5 ? 1 : -1;\n      const dx = Math.cos(angle) * distance * direction;\n      const dy = Math.sin(angle) * distance;\n\n      shootingStar.style.setProperty('--ss-top', startTop + '%');\n      shootingStar.style.setProperty('--ss-left', startLeft + '%');\n      shootingStar.style.setProperty('--ss-dx', dx.toFixed(0) + 'px');\n      shootingStar.style.setProperty('--ss-dy', dy.toFixed(0) + 'px');\n\n      shootingStar.classList.remove('is-active');\n      void shootingStar.offsetWidth;\n      shootingStar.classList.add('is-active');\n\n      const nextDelay = 18000 + Math.random() * 14000;\n      setTimeout(triggerShootingStar, nextDelay);\n    }\n\n    setTimeout(triggerShootingStar, TOTAL_DURATION + 500);\n  }\n})();\n<\/script>\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-4a85a64 e-con e-atomic-element e-flexbox-base e-4a85a64-bde1070 main-header festive-season-bg \" data-id=\"4a85a64\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"4a85a64\" data-e-type=\"e-flexbox\" data-id=\"4a85a64\">\n    <div class=\"elementor-element elementor-element-a829355 e-con e-atomic-element e-flexbox-base e-a829355-a981a53 \" data-id=\"a829355\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"a829355\" data-e-type=\"e-flexbox\" data-id=\"a829355\">\n    <div class=\"elementor-element elementor-element-d1372a9 e-con e-atomic-element e-flexbox-base e-d1372a9-92a8cbf \" data-id=\"d1372a9\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"d1372a9\" data-e-type=\"e-flexbox\" data-id=\"d1372a9\">\n    \t\t\t<h2 data-interaction-id=\"dea578d\" class=\"e-dea578d-56a4f2d body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"dea578d\"><a href=\"https:\/\/pearlresorts.com\/fr\/festive-season\/\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tFestive Season\n\t<\/a><\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"f551ef5\" class=\"e-f551ef5-f1ebe86 body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"f551ef5\">&nbsp; \u3009<\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"a06730f\" class=\"e-a06730f-5bd92f2 body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"a06730f\">Le Tikehau<\/h2>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-8454697 e-con e-atomic-element e-flexbox-base e-8454697-089ef1b \" data-id=\"8454697\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"8454697\" data-e-type=\"e-flexbox\" data-id=\"8454697\">\n    \t\t\t<h2 data-interaction-id=\"6eea81f\" class=\"body-text-small e-6eea81f-d248c68 subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"6eea81f\"><a href=\"#program\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tThe program\n\t<\/a><\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"6755da7\" class=\"body-text-small e-6755da7-7c277be subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"6755da7\"><a href=\"#about\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tAbout\n\t<\/a><\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"f138879\" class=\"e-f138879-101e4b7 body-text-small subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"f138879\"><a href=\"#collection\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tThe collection\n\t<\/a><\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"4f364c6\" class=\"body-text-small e-4f364c6-e3b6338 subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"4f364c6\"><a href=\"#conditions\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tConditions\n\t<\/a><\/h2>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-326b513 e-con e-atomic-element e-flexbox-base e-326b513-7c779a1 \" data-id=\"326b513\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"326b513\" data-e-type=\"e-flexbox\" data-id=\"326b513\">\n    \t\t<div class=\"elementor-element elementor-element-8b101df elementor-widget elementor-widget-button\" data-id=\"8b101df\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/bookings.letikehau.com\/en\/search-rates?hotel=62729\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Book now<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-c89b544 e-con e-atomic-element e-flexbox-base e-c89b544-d579cfc \" data-id=\"c89b544\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"c89b544\" data-e-type=\"e-flexbox\" data-id=\"c89b544\">\n    \t\t<div class=\"elementor-element elementor-element-35a5d5c elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"35a5d5c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n\t\t<div class=\"elementor-element elementor-element-143169d elementor-widget elementor-widget-off-canvas\" data-id=\"143169d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;entrance_animation_mobile&quot;:&quot;slideInDown&quot;,&quot;exit_animation_mobile&quot;:&quot;slideInDown&quot;}\" data-widget_type=\"off-canvas.default\">\n\t\t\t\t\t\t\t<div id=\"off-canvas-143169d\" class=\"e-off-canvas\" role=\"dialog\" aria-hidden=\"true\" aria-label=\"Anchors\" aria-modal=\"true\" inert=\"\" data-delay-child-handlers=\"true\">\n\t\t\t<div class=\"e-off-canvas__overlay\"><\/div>\n\t\t\t<div class=\"e-off-canvas__main\">\n\t\t\t\t<div class=\"e-off-canvas__content\">\n\t\t\t\t\t<div class=\"elementor-element elementor-element-146d374 e-con-full festive-season-bg e-flex e-con e-child\" data-id=\"146d374\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<h2 data-interaction-id=\"2aad57e\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"2aad57e\"><a href=\"#about\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tAbout\n\t<\/a><\/h2>\n\t\t\t\t\t\n<hr class=\"e-c9aa97f-ccc77fa e-divider-base\" data-interaction-id=\"c9aa97f\"  data-e-type=\"widget\" data-id=\"c9aa97f\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"a07f0dd\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"a07f0dd\">Festive Program<\/h2>\n\t\t\t\t\t\n<hr class=\"e-d0a8a27-c08a293 e-divider-base\" data-interaction-id=\"d0a8a27\"  data-e-type=\"widget\" data-id=\"d0a8a27\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"1e2db83\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"1e2db83\">Our collection<\/h2>\n\t\t\t\t\t\n<hr class=\"e-0eff300-bd74d56 e-divider-base\" data-interaction-id=\"0eff300\"  data-e-type=\"widget\" data-id=\"0eff300\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"cee8d76\" class=\"body-text-small white-text e-heading-base\" data-e-type=\"widget\" data-id=\"cee8d76\">Conditions<\/h2>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-866c944 e-con e-atomic-element e-flexbox-base e-6b10534 \" data-id=\"866c944\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"866c944\" id=\"program\" data-e-type=\"e-flexbox\" data-id=\"866c944\">\n    <div class=\"elementor-element elementor-element-24ec870 e-con e-atomic-element e-flexbox-base e-24ec870-fce45fa \" data-id=\"24ec870\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"24ec870\" data-e-type=\"e-flexbox\" data-id=\"24ec870\">\n    <div class=\"elementor-element elementor-element-2e52d65 e-con e-atomic-element e-flexbox-base e-2e52d65-220a10b \" data-id=\"2e52d65\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2e52d65\" data-e-type=\"e-flexbox\" data-id=\"2e52d65\">\n    <div class=\"elementor-element elementor-element-6614ce3 e-con e-atomic-element e-flexbox-base e-6614ce3-18f9821 \" data-id=\"6614ce3\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6614ce3\" data-e-type=\"e-flexbox\" data-id=\"6614ce3\">\n    <div class=\"elementor-element elementor-element-1d31290 e-con e-atomic-element e-flexbox-base e-1d31290-9f3f954 \" data-id=\"1d31290\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1d31290\" data-e-type=\"e-flexbox\" data-id=\"1d31290\">\n    \t\t<div class=\"elementor-element elementor-element-fb8ec5d elementor-widget__width-inherit elementor-widget-tablet__width-inherit elementor-widget-mobile__width-initial elementor-widget elementor-widget-heading\" data-id=\"fb8ec5d\" data-element_type=\"widget\" data-e-type=\"widget\" data-intro-reveal=\"\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Celebrate the festive season at Le Tikehau<\/h3>\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-de63ab1 e-con e-atomic-element e-flexbox-base e-de63ab1-0f3292e \" data-id=\"de63ab1\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"de63ab1\" data-e-type=\"e-flexbox\" data-id=\"de63ab1\">\n    \n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-f89cafb e-con e-atomic-element e-flexbox-base e-f89cafb-723beff \" data-id=\"f89cafb\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"f89cafb\" data-e-type=\"e-flexbox\" data-id=\"f89cafb\">\n    <div class=\"elementor-element elementor-element-297054c e-con e-atomic-element e-flexbox-base e-297054c-71d6321 \" data-id=\"297054c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"297054c\" data-e-type=\"e-flexbox\" data-id=\"297054c\">\n    \n<\/div>\n<div class=\"elementor-element elementor-element-10a273c e-con e-atomic-element e-flexbox-base e-10a273c-5620ff8 \" data-id=\"10a273c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"10a273c\" data-e-type=\"e-flexbox\" data-id=\"10a273c\">\n    \t\t\t<p class=\"e-5e03e7d-f682682 body-text-small e-paragraph-base\" data-interaction-id=\"5e03e7d\" data-e-type=\"widget\" data-id=\"5e03e7d\" >In Tikehau, the night belongs to the stars. Far from artificial light, the sky unfolds with a clarity rarely found elsewhere.<\/p>\n\t\t\t\t\t<p class=\"e-3084eb6-799e8db body-text-small e-paragraph-base\" data-interaction-id=\"3084eb6\" data-e-type=\"widget\" data-id=\"3084eb6\" >From our observation towers, this ancient knowledge comes into view \u2014 an invitation to look beyond the horizon, to reconnect with the elements, and to take time simply to be.<\/p>\n\t\t\t\t\t<p class=\"e-1f737c4-b653d28 body-text-small e-paragraph-base\" data-interaction-id=\"1f737c4\" data-e-type=\"widget\" data-id=\"1f737c4\" >For generations, Polynesian navigators have read these same stars to cross the Pacific, using the sky itself as their map.<\/p>\n\t\t\t\t\t<p class=\"e-7478cda-523da85 body-text-small e-paragraph-base\" data-interaction-id=\"7478cda\" data-e-type=\"widget\" data-id=\"7478cda\" >During the festive season, beneath the feti'a, there is nowhere else to be but here.<\/p>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-a4a566a e-con e-atomic-element e-flexbox-base e-a4a566a-d24cf0a \" data-id=\"a4a566a\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"a4a566a\" data-e-type=\"e-flexbox\" data-id=\"a4a566a\">\n    \t\t<div class=\"elementor-element elementor-element-27a229a elementor-widget elementor-widget-button\" data-id=\"27a229a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">The festive program<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-1d7555a5 e-con e-atomic-element e-flexbox-base e-1d7555a5-d2af678 \" data-id=\"1d7555a5\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1d7555a5\" data-e-type=\"e-flexbox\" data-id=\"1d7555a5\">\n    <div class=\"elementor-element elementor-element-1b0ce2f e-con e-atomic-element e-flexbox-base e-1b0ce2f-1614c52 \" data-id=\"1b0ce2f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1b0ce2f\" data-e-type=\"e-flexbox\" data-id=\"1b0ce2f\">\n    \t\t\t\n<hr class=\"e-677d3539-cf14211 e-divider-base\" data-interaction-id=\"677d3539\"  data-e-type=\"widget\" data-id=\"677d3539\" \/>\n\t\t\t\t<div class=\"elementor-element elementor-element-12f8df19 elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"12f8df19\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Calque_3\" data-name=\"Calque 3\" viewBox=\"0 0 170.33 169.39\"><defs><style>      .cls-1 {        fill: #fff;      }    <\/style><\/defs><path class=\"cls-1\" d=\"M143.01,118.85c-.13,0-.12-.5-.24-.57-2.02-1.17-2.26-.76-4.28-1.93s-2.02-1.18-4.05-2.35-2.02-1.18-4.04-2.35c-.37-.21-.4-.8-.19-1.16.21-.37.77-.69,1.14-.48,2.02,1.17,1.94,1.31,3.96,2.48s1.96,1.29,3.98,2.46,2.04,1.15,4.06,2.32c.37.21.42.57.21.94-.14.25-.3.65-.56.65ZM126.31,109.21c-.13,0-.12-.5-.24-.57-2.02-1.17-2.26-.76-4.28-1.93s-2.02-1.18-4.05-2.35-2.02-1.18-4.04-2.35c-.37-.21-.4-.8-.19-1.16.21-.37.77-.69,1.14-.48,2.02,1.17,1.94,1.31,3.96,2.48s1.96,1.29,3.98,2.46,2.04,1.15,4.06,2.32c.37.21.42.57.21.94-.14.25-.3.65-.56.65Z\"><\/path><path class=\"cls-1\" d=\"M55.04,67.74c-.13,0-.36.25-.48.18-1.75-1.01-1.64-1.2-3.39-2.21s-1.9-.76-3.65-1.77c-.37-.21-.61-1.06-.4-1.43.21-.37.85-.2,1.21.01,1.75,1.01,1.98.62,3.73,1.63s1.5,1.45,3.25,2.46c.37.21.72.55.51.91-.14.25-.51.2-.78.2ZM43.48,61.07c-.13,0-.36.25-.48.18-2.18-1.26-2.07-1.44-4.25-2.7s-2.33-1.01-4.51-2.27-2.19-1.24-4.38-2.51-1.95-1.66-4.14-2.92c-.37-.21-.82-.67-.61-1.04.21-.37.81-.16,1.17.05,2.18,1.26,2.36.95,4.54,2.21s2.22,1.19,4.41,2.45,1.93,1.7,4.11,2.96,2.42.86,4.6,2.12c.37.21.55.91.34,1.28-.14.25-.54.19-.81.19Z\"><\/path><path class=\"cls-1\" d=\"M112.38,70.39c-.28,0-.58-.39-.73-.65-.23-.39-.15-1.05.24-1.28,1.86-1.07,1.97-.89,3.83-1.96s1.73-1.29,3.6-2.37,1.92-.97,3.78-2.04,1.89-1.03,3.76-2.1,1.82-1.15,3.69-2.23c.39-.23.79.09,1.02.48.23.39.29.88-.1,1.11-1.86,1.07-1.81,1.17-3.67,2.24s-2,.84-3.86,1.91-1.82,1.15-3.68,2.22-1.81,1.17-3.68,2.25-1.99.85-3.86,1.93c-.13.08-.2.48-.34.48ZM135.86,56.83c-.28,0-.58-.39-.73-.65-.23-.39-.15-1.05.24-1.28,2.35-1.36,2.46-1.17,4.81-2.53s2.22-1.57,4.57-2.93c.39-.23,1.07.04,1.29.44.23.39.03.96-.36,1.18-2.35,1.36-2.31,1.43-4.66,2.78s-2.49,1.11-4.84,2.46c-.13.08-.18.52-.32.52Z\"><\/path><path class=\"cls-1\" d=\"M26.02,120.28c-.27,0-.75-.34-.89-.59-.21-.37.1-1.05.46-1.26,1.64-.95,1.75-.76,3.4-1.71s1.72-.82,3.37-1.77,1.65-.94,3.3-1.89c.36-.21.73-.36.94,0,.21.37-.04.69-.41.91-1.64.95-1.61,1.01-3.25,1.96s-1.52,1.17-3.17,2.12-1.75.78-3.39,1.73c-.12.07-.22.5-.35.5ZM40.45,111.95c-.27,0-.75-.34-.9-.59-.21-.37.1-1.05.46-1.26,1.84-1.06,1.95-.87,3.78-1.93s1.91-.93,3.75-1.99,1.84-1.05,3.68-2.11,1.67-1.35,3.51-2.41,1.95-.86,3.79-1.93c.37-.21.64-.19.85.18.21.37.26.89-.11,1.1-1.84,1.06-1.93.89-3.77,1.95s-1.67,1.34-3.51,2.4-1.95.86-3.79,1.92-1.77,1.18-3.61,2.25-1.95.88-3.78,1.94c-.12.07-.23.48-.36.48Z\"><\/path><path class=\"cls-1\" d=\"M103.47,54.82c-.14,0-.25-.22-.38-.29-.39-.23-.59-.7-.36-1.09,1.01-1.75,1.18-1.65,2.2-3.41s1.08-1.72,2.09-3.47.75-1.91,1.76-3.66c.23-.39.71-.35,1.1-.12.39.23.62.6.4.99-1.01,1.75-1.04,1.74-2.05,3.49s-1.14,1.68-2.15,3.44-.77,1.89-1.79,3.65c-.15.26-.53.49-.81.49ZM112.35,39.44c-.14,0-.25-.22-.38-.29-.39-.23-.59-.7-.36-1.09,1.28-2.22,1.46-2.12,2.74-4.35s1.35-2.19,2.64-4.41,1.02-2.38,2.3-4.61c.23-.39.71-.35,1.1-.12.39.23.62.6.4.99-1.28,2.22-1.31,2.21-2.6,4.43s-1.41,2.15-2.7,4.38-1.04,2.36-2.33,4.59c-.15.26-.53.49-.81.49Z\"><\/path><path class=\"cls-1\" d=\"M51.22,144.97c-.13,0-.34.27-.46.2-.37-.21-.47-.85-.26-1.22,1.17-2.02,1.22-1.99,2.38-4.02s1.09-2.07,2.26-4.1,1.21-2,2.38-4.03c.21-.37.7-.42,1.07-.21.37.21.77.78.56,1.15-1.17,2.02-1.63,1.76-2.79,3.78s-.84,2.22-2.01,4.24-1.3,1.95-2.47,3.98c-.14.25-.39.22-.66.22ZM60.86,128.27c-.13,0-.34.27-.46.2-.37-.21-.47-.85-.26-1.22,1.17-2.02,1.22-1.99,2.38-4.02s1.09-2.07,2.26-4.1,1.21-2,2.38-4.03c.21-.37.7-.42,1.07-.21.37.21.77.78.56,1.15-1.17,2.02-1.63,1.76-2.8,3.78s-.84,2.22-2.01,4.24-1.3,1.95-2.47,3.98c-.14.25-.39.22-.66.22Z\"><\/path><path class=\"cls-1\" d=\"M120.06,145.04c-.27,0-.55-.02-.69-.27-1.06-1.83-1.17-1.77-2.23-3.61s-.64-2.08-1.69-3.92-1.18-1.77-2.24-3.6-1.09-1.82-2.15-3.66-1.13-1.8-2.19-3.64c-.21-.37-.06-.6.31-.81.37-.21.88-.37,1.1,0,1.06,1.84,1.13,1.8,2.19,3.63s.76,2.01,1.82,3.84,1.4,1.64,2.46,3.47,1.03,1.86,2.09,3.7.89,1.94,1.96,3.77c.21.37.03.9-.33,1.11-.12.07-.27-.02-.4-.02ZM106.83,122.12c-.27,0-.55-.02-.69-.27-.95-1.64-1.06-1.58-2.01-3.22s-.52-1.89-1.47-3.54-1.07-1.58-2.02-3.22c-.21-.37-.18-.59.19-.8.36-.21.67-.19.88.18.95,1.64.84,1.71,1.79,3.35s1.3,1.44,2.25,3.09,1.02,1.61,1.97,3.25c.21.37-.18.89-.55,1.1-.12.07-.21.08-.34.08Z\"><\/path><path class=\"cls-1\" d=\"M71.87,61.81c-.28,0-.28-.39-.44-.65-.04-.07-.22.03-.26-.03-.23-.39-.02-.55.37-.78.39-.23.62-.32.84.07.04.07.22-.03.26.04.23.39-.05.81-.44,1.04-.13.08-.2.32-.34.32ZM68.98,56.81c-.28,0-.29-.39-.44-.65-1.25-2.16-1.42-2.05-2.67-4.21s-1.05-2.27-2.3-4.43-1.43-2.06-2.67-4.22c-.23-.39-.24-.9.15-1.12.39-.23.81.05,1.04.44,1.25,2.16,1.27,2.14,2.52,4.3s1.37,2.09,2.62,4.25,1.37,2.09,2.61,4.25c.23.39-.24.66-.63.88-.13.08-.09.52-.22.52ZM58.7,39c-.28,0-.29-.39-.44-.65-1.25-2.16-1.42-2.06-2.67-4.21s-1.05-2.27-2.3-4.43-1.43-2.06-2.67-4.22c-.23-.39-.24-.9.15-1.12.39-.23.81.05,1.04.44,1.25,2.16,1.27,2.14,2.52,4.3s1.37,2.09,2.62,4.25,1.37,2.09,2.61,4.25c.23.39-.24.66-.63.88-.13.08-.09.52-.22.52Z\"><\/path><path class=\"cls-1\" d=\"M52.62,81.71c1.28.37,1.4-.07,2.73-.15s1.31-.5,2.64-.58,1.36.34,2.69.26,1.32-.28,2.65-.35,1.34.05,2.68-.03,1.34-.06,2.67-.14,1.32-.34,2.65-.42,1.36.32,2.7.24,1.33-.19,2.67-.27c1.16-.07,2.37-.55,3.14-1.31s.89-2,.96-3.16c.08-1.33.17-1.33.25-2.66s.23-1.33.31-2.66-.14-1.34-.06-2.68.03-1.34.11-2.67.5-1.31.58-2.64.17-1.33.24-2.66-.15-1.35-.07-2.68.17-1.33.25-2.67.1-1.32-.26-2.61c-.9.09-1.49.27-2.36.42s-1.83.05-2.69.27-1.7.6-2.54.89-1.7.58-2.52.95-1.6.83-2.38,1.26-1.5.98-2.24,1.47-1.6.85-2.3,1.4-1.16,1.4-1.81,2.01-1.58.95-2.19,1.61-1.09,1.44-1.64,2.14-.78,1.63-1.27,2.38-1.31,1.29-1.74,2.07-.81,1.6-1.18,2.42-.71,1.65-1,2.5-.7,1.67-.93,2.54-.35,1.77-.51,2.65-.13,1.97-.21,2.87ZM72.96,72.08c-.96.96-2.26.96-3.22,0-.96-.96-1.26-2.56-.3-3.53.96-.96,2.57-.66,3.53.3.96.96.96,2.26,0,3.23Z\"><\/path><path class=\"cls-1\" d=\"M81.06,93.7c-.07-1.16-.81-2.02-1.58-2.79s-1.64-1.25-2.8-1.32c-1.33-.08-1.34-.05-2.67-.13s-1.32-.34-2.65-.42-1.35.21-2.68.13-1.32-.28-2.65-.36-1.34-.03-2.67-.1-1.31-.47-2.65-.55-1.35.17-2.69.09-1.35.13-2.69.05-1.37-.67-2.66-.3c.09.9.02,1.8.18,2.67s.61,1.71.84,2.56.48,1.72.78,2.56.35,1.79.72,2.61.87,1.58,1.3,2.36.88,1.57,1.38,2.31.92,1.57,1.47,2.27,1.38,1.18,1.99,1.84,1.25,1.27,1.9,1.88,1.13,1.45,1.83,2,1.43,1.1,2.18,1.6,1.57.89,2.36,1.32,1.66.69,2.48,1.06,1.61.81,2.45,1.11,1.81.18,2.68.41,1.71.42,2.6.57,1.76.52,2.66.6c.37-1.28-.4-1.33-.48-2.66s.41-1.36.33-2.7-.1-1.33-.18-2.66-.03-1.34-.11-2.67-.16-1.33-.24-2.66-.17-1.33-.25-2.66-.25-1.33-.33-2.66.07-1.35,0-2.68-.06-1.34-.14-2.68ZM73.05,100.74c-.96.96-2.66,1.19-3.62.23-.96-.96-.92-2.84.04-3.8.96-.96,2.82-.99,3.78-.02.96.96.76,2.63-.2,3.6Z\"><\/path><path class=\"cls-1\" d=\"M94.6,89.68c-1.16.07-2.22.28-2.99,1.05s-1.17,1.82-1.24,2.97c-.08,1.33-.18,1.33-.26,2.66s-.11,1.33-.19,2.67-.25,1.32-.33,2.65-.04,1.34-.12,2.67.13,1.35.05,2.68.15,1.35.07,2.68-.36,1.32-.44,2.65.19,1.35.12,2.69-.92,1.41-.55,2.7c.9-.09,1.91-.32,2.79-.47s1.77-.29,2.63-.52,1.64-.72,2.48-1.02,1.85-.19,2.67-.55,1.43-1.15,2.21-1.58,1.62-.76,2.36-1.25,1.34-1.18,2.04-1.73,1.52-.96,2.17-1.57,1.29-1.23,1.9-1.89,1.22-1.31,1.77-2.01.96-1.5,1.46-2.25,1.25-1.34,1.68-2.12.5-1.75.87-2.56,1.05-1.5,1.35-2.35.44-1.75.67-2.61.42-1.74.58-2.63.25-2.06.34-2.96c-1.28-.37-1.4.62-2.73.7s-1.36-.28-2.69-.2-1.33.17-2.66.25-1.33.09-2.67.17-1.32.26-2.66.34-1.34-.09-2.68-.01-1.33.2-2.66.28-1.38-.37-2.71-.2-1.29.58-2.63.65ZM101.87,100.99c-.96.96-2.73.76-3.69-.2-.96-.96-1.03-2.59-.07-3.55.96-.96,2.58-.89,3.55.07.96.96,1.17,2.72.21,3.68Z\"><\/path><path class=\"cls-1\" d=\"M88.78,51.76c-.37,1.28-.06,1.37.02,2.7s.11,1.33.19,2.67.05,1.33.13,2.66.12,1.33.2,2.66.51,1.31.59,2.64-.18,1.35-.11,2.69.36,1.32.44,2.65-.46,1.37-.38,2.71.24,1.33.32,2.67c.07,1.16.51,2.35,1.28,3.12s1.98.84,3.14.91c1.33.08,1.33.21,2.66.29s1.33.08,2.67.16,1.31.41,2.64.48,1.35-.26,2.69-.18,1.32.28,2.66.35,1.32.28,2.66.36,1.35-.14,2.68-.06,1.34-.05,2.68.03,1.41.71,2.7.35c-.09-.9-.49-1.84-.65-2.71s-.31-1.75-.53-2.61-.06-1.86-.35-2.7-.91-1.57-1.27-2.39-.75-1.62-1.18-2.4-1.01-1.47-1.51-2.21-.68-1.72-1.23-2.42-1.26-1.3-1.86-1.95-1.39-1.13-2.05-1.74-1.21-1.33-1.92-1.88-1.46-1.03-2.21-1.52-1.5-.98-2.28-1.41-1.64-.71-2.46-1.08-1.63-.7-2.48-.99-1.69-.56-2.55-.79-1.72-.46-2.6-.62-1.83-.37-2.72-.46ZM101.61,72.15c-.96.96-2.31.87-3.27-.09s-.98-2.24-.02-3.2c.96-.96,2.24-.94,3.2.02.96.96,1.05,2.31.09,3.28Z\"><\/path><path class=\"cls-1\" d=\"M169.88,83.05c-7.52-.44-7.53-.29-15.05-.73-7.52-.44-7.53-.23-15.05-.67-7.52-.44-7.55.02-15.07-.42-7.52-.44-7.52-.53-15.04-.98-7.52-.44-7.48-1.17-15-1.61-1.87-.11-3.79-.99-3.9-2.86-.44-7.52-.54-7.51-.98-15.03-.44-7.52.45-7.57,0-15.09-.44-7.52-1.07-7.48-1.51-15.01-.44-7.52-.12-7.54-.57-15.06-.44-7.52-1.1-7.48-1.55-15.01C86.13,0,86.22,0,85.64,0s-1.01-.03-1.04.55c-.44,7.52-.09,7.54-.53,15.06-.44,7.52-1.4,7.46-1.85,14.98-.44,7.52.05,7.55-.4,15.07-.44,7.52-.79,7.5-1.23,15.02s.32,7.57-.12,15.09c-.11,1.87-1.95,3.34-3.83,3.46-7.52.44-7.51.65-15.02,1.09-7.52.44-7.53.23-15.05.67-7.52.44-7.5.87-15.02,1.32-7.52.44-7.55.03-15.07.47-7.52.44-7.52.5-15.04.95-.58.03-1.44.44-1.44,1.03s.88.55,1.46.58c7.52.44,7.48,1.14,15,1.59,7.52.44,7.53.28,15.05.72,7.52.44,7.52.5,15.04.94,7.52.44,7.54.15,15.06.59,7.52.44,7.55-.03,15.07.42,1.87.11,3.17,2.29,3.28,4.17.44,7.52-.08,7.55.36,15.07.44,7.52,1.27,7.47,1.71,14.99.44,7.52-.25,7.56.2,15.08.44,7.52.67,7.51,1.11,15.03s.99,7.49,1.44,15.01c.03.58.28.41.86.41s1.17.19,1.21-.39c.44-7.52.15-7.54.59-15.05.44-7.52.76-7.5,1.2-15.02.44-7.52.66-7.51,1.1-15.03.44-7.52.07-7.54.51-15.07.44-7.52.71-7.51,1.15-15.03.11-1.87,1.34-3.7,3.21-3.81,7.52-.44,7.5-.78,15.02-1.22,7.52-.44,7.56.23,15.08-.22,7.52-.44,7.5-.88,15.02-1.32,7.52-.44,7.58.53,15.1.09,7.52-.44,7.51-.57,15.04-1.01.58-.03.44-.94.44-1.52s.15-1.67-.43-1.7ZM158.32,84.76l-7.25.51h0c-3.33.19-3.43,0-6.9.2-3.55.21-3.55.23-7.09.44-3.54.21-3.53.46-7.07.67-3.55.21-3.55.09-7.1.3-3.55.21-3.56.01-7.1.22-3.55.21-3.55.1-7.1.31-3.55.21-3.53.51-7.07.72-3.54.21-3.56-.07-7.1.14-2.76.16-5.18,2.61-5.35,5.37-.21,3.55.28,3.58.07,7.13-.21,3.55-.69,3.52-.9,7.07-.21,3.55-.11,3.55-.32,7.1-.21,3.55-.27,3.54-.48,7.09-.21,3.55.05,3.56-.16,7.11-.21,3.55-.18,3.55-.39,7.09-.21,3.55-.11,3.55-.32,7.1-.2,3.41-.38,3.54-.58,6.68h0s-.43,7.22-.43,7.22c0,0,0,0-.01,0-.01,0-.02,0-.04,0l-.29-5.21c.11-.53.18-1.08.15-1.64-.21-3.55-.51-3.53-.72-7.08-.21-3.55-.17-3.55-.38-7.1-.21-3.55-.37-3.54-.58-7.08-.21-3.55.24-3.57.03-7.12-.21-3.55-.36-3.54-.57-7.08s-.51-3.53-.72-7.07c-.21-3.55.09-3.56-.12-7.11-.21-3.54-.6-3.52-.81-7.07-.16-2.76-2.08-5.13-4.84-5.29-3.55-.21-3.57.07-7.12-.14s-3.55-.14-7.1-.35c-3.55-.21-3.53-.46-7.08-.67-3.54-.21-3.54-.28-7.09-.49-3.55-.21-3.57.11-7.11-.1q-3.55-.21-7.09-.41c-3.55-.21-3.54-.36-7.08-.57-3.55-.21-3.55-.1-7.1-.31-.03,0-.07,0-.1,0l-6.96-.39c0-.07-.01-.12-.01-.19,0,0,0,0,0,0l6.76-.4c.11,0,.23,0,.34,0,3.55-.21,3.55-.19,7.1-.4,3.55-.21,3.54-.38,7.09-.59,3.54-.21,3.56.07,7.11-.14,3.55-.21,3.54-.34,7.09-.55,3.55-.21,3.54-.34,7.08-.55,3.55-.21,3.56.11,7.11-.1,3.55-.21,3.52-.67,7.06-.88,3.54-.21,3.56,0,7.1-.22,2.76-.16,5.16-2.3,5.33-5.06.21-3.55-.1-3.57.11-7.12.21-3.55.55-3.53.76-7.08.21-3.55-.05-3.56.16-7.11.21-3.55.02-3.56.23-7.1.21-3.55.37-3.54.58-7.08.21-3.55.03-3.56.24-7.1q.21-3.55.43-7.09c.21-3.55.59-3.52.8-7.07.03-.46,0-.92-.08-1.38l.34-5.81s0,0,0,0c0,0,0,0,0,0l.31,5.48c-.12.57-.2,1.15-.16,1.73.21,3.55.34,3.54.55,7.09.21,3.55.53,3.53.74,7.08.21,3.55.27,3.54.48,7.09.21,3.55-.02,3.56.19,7.11.21,3.55-.02,3.56.18,7.11.21,3.55.25,3.54.46,7.09.21,3.55.36,3.54.56,7.08.21,3.54.25,3.54.46,7.09.16,2.76,2.35,4.99,5.11,5.15,3.55.21,3.55.16,7.1.37,3.55.21,3.55.28,7.1.49,3.55.21,3.55.17,7.1.38,3.54.21,3.54.22,7.09.43,3.55.21,3.54.39,7.08.6,3.55.21,3.55.17,7.09.37,3.55.21,3.54.29,7.09.5,3.35.2,3.55,0,6.55.15l7.58.45s0,0,0,0c0,0,0,0,0,0Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n<hr class=\"e-64b6416c-0afe3c9 e-divider-base\" data-interaction-id=\"64b6416c\"  data-e-type=\"widget\" data-id=\"64b6416c\" \/>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-fb20606 e-con e-atomic-element e-flexbox-base e-fb20606-c3435d1 \" data-id=\"fb20606\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"fb20606\" id=\"about\" data-e-type=\"e-flexbox\" data-id=\"fb20606\">\n    <div class=\"elementor-element elementor-element-3dc4788 e-con e-atomic-element e-flexbox-base e-3dc4788-a1e5bc3 \" data-id=\"3dc4788\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"3dc4788\" data-e-type=\"e-flexbox\" data-id=\"3dc4788\">\n    <div class=\"elementor-element elementor-element-39c5835 e-con e-atomic-element e-flexbox-base e-39c5835-6906929 \" data-id=\"39c5835\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"39c5835\" data-e-type=\"e-flexbox\" data-id=\"39c5835\">\n    \t\t\t<img fetchpriority=\"high\" decoding=\"async\" class=\"e-image-base e-2a5d3da-a32c29f\" data-interaction-id=\"2a5d3da\" data-e-type=\"widget\" data-id=\"2a5d3da\" id=\"5796\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/Le-Tikehau_Exterieurs_Drone_2024_@stephanemailion-1-scaled.webp\" width=\"1920\" height=\"1279\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/Le-Tikehau_Exterieurs_Drone_2024_@stephanemailion-1-scaled.webp 1920w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/Le-Tikehau_Exterieurs_Drone_2024_@stephanemailion-1-300x200.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/Le-Tikehau_Exterieurs_Drone_2024_@stephanemailion-1-1024x682.webp 1024w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/Le-Tikehau_Exterieurs_Drone_2024_@stephanemailion-1-768x512.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/Le-Tikehau_Exterieurs_Drone_2024_@stephanemailion-1-1536x1023.webp 1536w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/Le-Tikehau_Exterieurs_Drone_2024_@stephanemailion-1-18x12.webp 18w\" alt=\"\"\/>\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-c0a907f e-con e-atomic-element e-flexbox-base e-c0a907f-b7f3c4a \" data-id=\"c0a907f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"c0a907f\" data-e-type=\"e-flexbox\" data-id=\"c0a907f\">\n    \t\t<div class=\"elementor-element elementor-element-fad0b7f elementor-widget elementor-widget-heading\" data-id=\"fad0b7f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">The property<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<h3 data-interaction-id=\"3f8a1d5\" class=\"e-3f8a1d5-46d7293 h2 e-heading-base\" data-e-type=\"widget\" data-id=\"3f8a1d5\" >Le Tikehau<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-0298b46 e-con e-atomic-element e-flexbox-base e-0298b46-1f54660 \" data-id=\"0298b46\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"0298b46\" data-e-type=\"e-flexbox\" data-id=\"0298b46\">\n    \t\t\t<p class=\"e-74e164b-aa20af6 body-text-small e-paragraph-base\" data-interaction-id=\"74e164b\" data-e-type=\"widget\" data-id=\"74e164b\">Le Tikehau by Pearl Resorts rises on a private motu at the heart of the Tuamotus, where lagoon meets open ocean. Pink sands, crystalline waters and thriving reefs compose a landscape of rare, untouched beauty.<\/p>\n\t\t\n<\/div>\n\n<\/div>\n\t\t<div class=\"elementor-element elementor-element-aba05ac carousel-centered pagination-light elementor-widget__width-inherit elementor-pagination-position-inside elementor-pagination-type-bullets elementor-arrows-position-inside elementor-widget elementor-widget-n-carousel\" data-id=\"aba05ac\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;Le Taha&#039;a&quot;,&quot;_id&quot;:&quot;046cca1&quot;},{&quot;_id&quot;:&quot;5b75855&quot;,&quot;slide_title&quot;:&quot;Le Bora Bora&quot;},{&quot;_id&quot;:&quot;ded07b9&quot;,&quot;slide_title&quot;:&quot;Vahine Private Island&quot;},{&quot;slide_title&quot;:&quot;Le Tikehau&quot;,&quot;_id&quot;:&quot;4354dee&quot;},{&quot;slide_title&quot;:&quot;Le Nuku Hiva&quot;,&quot;_id&quot;:&quot;4c25937&quot;},{&quot;slide_title&quot;:&quot;Le Taha&#039;a&quot;,&quot;_id&quot;:&quot;6e9eb9a&quot;},{&quot;slide_title&quot;:&quot;Le Bora Bora&quot;,&quot;_id&quot;:&quot;2b9c8b9&quot;},{&quot;slide_title&quot;:&quot;Vahine Private Island&quot;,&quot;_id&quot;:&quot;e524b5c&quot;},{&quot;_id&quot;:&quot;6bfe188&quot;,&quot;slide_title&quot;:&quot;Le Tikehau&quot;},{&quot;slide_title&quot;:&quot;Le Nuku Hiva&quot;,&quot;_id&quot;:&quot;ec9ef08&quot;}],&quot;slides_to_show&quot;:&quot;6&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:40,&quot;sizes&quot;:[]},&quot;slides_to_scroll_tablet&quot;:&quot;1&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:40,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;4&quot;,&quot;slides_to_show_mobile&quot;:&quot;2&quot;,&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:16,&quot;sizes&quot;:[]},&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;arrows&quot;:&quot;yes&quot;,&quot;pagination&quot;:&quot;bullets&quot;}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"polite\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5173b68f e-flex e-con-boxed e-con e-child\" data-id=\"5173b68f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-45501621 e-con e-atomic-element e-flexbox-base e-45501621-626aeb4 \" data-id=\"45501621\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"45501621\" data-e-type=\"e-flexbox\" data-id=\"45501621\">\n    \t\t\t<img decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"406022eb\" data-e-type=\"widget\" data-id=\"406022eb\" id=\"6292\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-06.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-06.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-06-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-06-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-06-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-06-10x12.webp 10w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-78836a43 e-flex e-con-boxed e-con e-child\" data-id=\"78836a43\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1795fc8a e-con e-atomic-element e-flexbox-base e-1795fc8a-6fa58b0 \" data-id=\"1795fc8a\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1795fc8a\" data-e-type=\"e-flexbox\" data-id=\"1795fc8a\">\n    \t\t\t<img decoding=\"async\" class=\"e-image-base e-1b416f1b-37a0516\" data-interaction-id=\"1b416f1b\" data-e-type=\"widget\" data-id=\"1b416f1b\" id=\"6293\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-07.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-07.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-07-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-07-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-07-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-07-12x12.webp 12w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"3\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4b1f9a63 e-flex e-con-boxed e-con e-child\" data-id=\"4b1f9a63\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-2dfa5052 e-con e-atomic-element e-flexbox-base e-2dfa5052-7b85597 \" data-id=\"2dfa5052\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2dfa5052\" data-e-type=\"e-flexbox\" data-id=\"2dfa5052\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"33d619c3\" data-e-type=\"widget\" data-id=\"33d619c3\" id=\"6294\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-08.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-08.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-08-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-08-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-08-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-08-10x12.webp 10w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"4\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5d56ec0a e-flex e-con-boxed e-con e-child\" data-id=\"5d56ec0a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7bf2ef9a e-con e-atomic-element e-flexbox-base e-7bf2ef9a-451043f \" data-id=\"7bf2ef9a\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"7bf2ef9a\" data-e-type=\"e-flexbox\" data-id=\"7bf2ef9a\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"7ccf92bc\" data-e-type=\"widget\" data-id=\"7ccf92bc\" id=\"6295\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-09.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-09.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-09-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-09-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-09-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-09-12x12.webp 12w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"5\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-755ccae8 e-con-full e-flex e-con e-child\" data-id=\"755ccae8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9a9008 e-con e-atomic-element e-flexbox-base e-9a9008-309eb84 \" data-id=\"9a9008\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"9a9008\" data-e-type=\"e-flexbox\" data-id=\"9a9008\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"5e5ede19\" data-e-type=\"widget\" data-id=\"5e5ede19\" id=\"6296\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-10.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-10.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-10-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-10-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-10-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-10-10x12.webp 10w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"6\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4cae9934 e-flex e-con-boxed e-con e-child\" data-id=\"4cae9934\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3c9a6f0f e-con e-atomic-element e-flexbox-base e-3c9a6f0f-d77531e \" data-id=\"3c9a6f0f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"3c9a6f0f\" data-e-type=\"e-flexbox\" data-id=\"3c9a6f0f\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"55c429ee\" data-e-type=\"widget\" data-id=\"55c429ee\" id=\"3020\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/07.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/07.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/07-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/07-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/07-768x952.webp 768w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"7\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-54e88a8d e-flex e-con-boxed e-con e-child\" data-id=\"54e88a8d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7931972e e-con e-atomic-element e-flexbox-base e-7931972e-4867acc \" data-id=\"7931972e\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"7931972e\" data-e-type=\"e-flexbox\" data-id=\"7931972e\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"1f39fab1\" data-e-type=\"widget\" data-id=\"1f39fab1\" id=\"6288\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-02.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-02.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-02-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-02-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-02-15x12.webp 15w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"8\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-12a6a70 e-flex e-con-boxed e-con e-child\" data-id=\"12a6a70\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-131cd683 e-con e-atomic-element e-flexbox-base e-131cd683-5b39c54 \" data-id=\"131cd683\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"131cd683\" data-e-type=\"e-flexbox\" data-id=\"131cd683\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"d1787b8\" data-e-type=\"widget\" data-id=\"d1787b8\" id=\"6289\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-03.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-03.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-03-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-03-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-03-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-03-12x12.webp 12w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"9\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5750dc3 e-flex e-con-boxed e-con e-child\" data-id=\"5750dc3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-41b255f5 e-con e-atomic-element e-flexbox-base e-41b255f5-4efc0e7 \" data-id=\"41b255f5\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"41b255f5\" data-e-type=\"e-flexbox\" data-id=\"41b255f5\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"63892cc\" data-e-type=\"widget\" data-id=\"63892cc\" id=\"6290\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-04.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-04.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-04-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-04-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-04-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-04-10x12.webp 10w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"10\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"10 sur 10\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-28f22a34 e-con-full e-flex e-con e-child\" data-id=\"28f22a34\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2c939fda e-con e-atomic-element e-flexbox-base e-2c939fda-b0f3a14 \" data-id=\"2c939fda\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2c939fda\" data-e-type=\"e-flexbox\" data-id=\"2c939fda\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"244add8b\" data-e-type=\"widget\" data-id=\"244add8b\" id=\"6291\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-05.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-05.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-05-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-05-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TKH-05-15x12.webp 15w\" alt=\"\"\/>\t\t\n<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Pr\u00e9c\u00e9dent\">\n\t\t\t\t\t\t\t<\/div>\n\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Suivant\">\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9d0dd46 e-con e-atomic-element e-flexbox-base e-9d0dd46-8feb199 \" data-id=\"9d0dd46\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"9d0dd46\" data-e-type=\"e-flexbox\" data-id=\"9d0dd46\">\n    <div class=\"elementor-element elementor-element-673b22d e-con e-atomic-element e-flexbox-base e-673b22d-a47afcc \" data-id=\"673b22d\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"673b22d\" data-e-type=\"e-flexbox\" data-id=\"673b22d\">\n    \t\t\t<p class=\"e-eb9678d-fa671fe body-text-small e-paragraph-base\" data-interaction-id=\"eb9678d\" data-e-type=\"widget\" data-id=\"eb9678d\">A Relais &amp; Ch\u00e2teaux retreat deeply attuned to its surroundings, Le Tikehau follows the rhythm of the lagoon, the tides and the star-filled night.<\/p>\n\t\t\t\t\t<p class=\"e-3f1e47b-be524f5 body-text-small e-paragraph-base\" data-interaction-id=\"3f1e47b\" data-e-type=\"widget\" data-id=\"3f1e47b\">Here, Polynesian culture reveals itself in its most essential forms \u2014 the time-honoured art of fishing, dance and music passed down through generations, and the ancestral knowledge of the stars, once read by Polynesian navigators to chart their way across the Pacific.<\/p>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-cfd7cd4 e-con e-atomic-element e-flexbox-base e-cfd7cd4-340fca7 \" data-id=\"cfd7cd4\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"cfd7cd4\" data-e-type=\"e-flexbox\" data-id=\"cfd7cd4\">\n    \t\t<div class=\"elementor-element elementor-element-540ade8 elementor-widget elementor-widget-button\" data-id=\"540ade8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.letikehau.com\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Visit the website<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<h2 data-interaction-id=\"4fa32f6\" class=\"e-4fa32f6-d7461e6 button-secondary underline-centered e-heading-base\" data-e-type=\"widget\" data-id=\"4fa32f6\"><a href=\"https:\/\/pearlresorts.com\/fr\/festive-season-le-tikehau\/\" target=\"_self\" class=\"e-heading-link-base\">\n\t\tDiscover the program\n\t<\/a><\/h2>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-44c5836 e-con e-atomic-element e-flexbox-base e-44c5836-c553385 \" data-id=\"44c5836\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"44c5836\" data-e-type=\"e-flexbox\" data-id=\"44c5836\">\n    <div class=\"elementor-element elementor-element-f1f7021 e-con e-atomic-element e-flexbox-base e-f1f7021-4fb5f0c \" data-id=\"f1f7021\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"f1f7021\" data-e-type=\"e-flexbox\" data-id=\"f1f7021\">\n    \t\t\t\n<hr class=\"e-5783d0a-9e59361 e-divider-base\" data-interaction-id=\"5783d0a\"  data-e-type=\"widget\" data-id=\"5783d0a\" \/>\n\t\t\t\t<div class=\"elementor-element elementor-element-99855a0 elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"99855a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Calque_3\" data-name=\"Calque 3\" viewBox=\"0 0 170.33 169.39\"><defs><style>      .cls-1 {        fill: #fff;      }    <\/style><\/defs><path class=\"cls-1\" d=\"M143.01,118.85c-.13,0-.12-.5-.24-.57-2.02-1.17-2.26-.76-4.28-1.93s-2.02-1.18-4.05-2.35-2.02-1.18-4.04-2.35c-.37-.21-.4-.8-.19-1.16.21-.37.77-.69,1.14-.48,2.02,1.17,1.94,1.31,3.96,2.48s1.96,1.29,3.98,2.46,2.04,1.15,4.06,2.32c.37.21.42.57.21.94-.14.25-.3.65-.56.65ZM126.31,109.21c-.13,0-.12-.5-.24-.57-2.02-1.17-2.26-.76-4.28-1.93s-2.02-1.18-4.05-2.35-2.02-1.18-4.04-2.35c-.37-.21-.4-.8-.19-1.16.21-.37.77-.69,1.14-.48,2.02,1.17,1.94,1.31,3.96,2.48s1.96,1.29,3.98,2.46,2.04,1.15,4.06,2.32c.37.21.42.57.21.94-.14.25-.3.65-.56.65Z\"><\/path><path class=\"cls-1\" d=\"M55.04,67.74c-.13,0-.36.25-.48.18-1.75-1.01-1.64-1.2-3.39-2.21s-1.9-.76-3.65-1.77c-.37-.21-.61-1.06-.4-1.43.21-.37.85-.2,1.21.01,1.75,1.01,1.98.62,3.73,1.63s1.5,1.45,3.25,2.46c.37.21.72.55.51.91-.14.25-.51.2-.78.2ZM43.48,61.07c-.13,0-.36.25-.48.18-2.18-1.26-2.07-1.44-4.25-2.7s-2.33-1.01-4.51-2.27-2.19-1.24-4.38-2.51-1.95-1.66-4.14-2.92c-.37-.21-.82-.67-.61-1.04.21-.37.81-.16,1.17.05,2.18,1.26,2.36.95,4.54,2.21s2.22,1.19,4.41,2.45,1.93,1.7,4.11,2.96,2.42.86,4.6,2.12c.37.21.55.91.34,1.28-.14.25-.54.19-.81.19Z\"><\/path><path class=\"cls-1\" d=\"M112.38,70.39c-.28,0-.58-.39-.73-.65-.23-.39-.15-1.05.24-1.28,1.86-1.07,1.97-.89,3.83-1.96s1.73-1.29,3.6-2.37,1.92-.97,3.78-2.04,1.89-1.03,3.76-2.1,1.82-1.15,3.69-2.23c.39-.23.79.09,1.02.48.23.39.29.88-.1,1.11-1.86,1.07-1.81,1.17-3.67,2.24s-2,.84-3.86,1.91-1.82,1.15-3.68,2.22-1.81,1.17-3.68,2.25-1.99.85-3.86,1.93c-.13.08-.2.48-.34.48ZM135.86,56.83c-.28,0-.58-.39-.73-.65-.23-.39-.15-1.05.24-1.28,2.35-1.36,2.46-1.17,4.81-2.53s2.22-1.57,4.57-2.93c.39-.23,1.07.04,1.29.44.23.39.03.96-.36,1.18-2.35,1.36-2.31,1.43-4.66,2.78s-2.49,1.11-4.84,2.46c-.13.08-.18.52-.32.52Z\"><\/path><path class=\"cls-1\" d=\"M26.02,120.28c-.27,0-.75-.34-.89-.59-.21-.37.1-1.05.46-1.26,1.64-.95,1.75-.76,3.4-1.71s1.72-.82,3.37-1.77,1.65-.94,3.3-1.89c.36-.21.73-.36.94,0,.21.37-.04.69-.41.91-1.64.95-1.61,1.01-3.25,1.96s-1.52,1.17-3.17,2.12-1.75.78-3.39,1.73c-.12.07-.22.5-.35.5ZM40.45,111.95c-.27,0-.75-.34-.9-.59-.21-.37.1-1.05.46-1.26,1.84-1.06,1.95-.87,3.78-1.93s1.91-.93,3.75-1.99,1.84-1.05,3.68-2.11,1.67-1.35,3.51-2.41,1.95-.86,3.79-1.93c.37-.21.64-.19.85.18.21.37.26.89-.11,1.1-1.84,1.06-1.93.89-3.77,1.95s-1.67,1.34-3.51,2.4-1.95.86-3.79,1.92-1.77,1.18-3.61,2.25-1.95.88-3.78,1.94c-.12.07-.23.48-.36.48Z\"><\/path><path class=\"cls-1\" d=\"M103.47,54.82c-.14,0-.25-.22-.38-.29-.39-.23-.59-.7-.36-1.09,1.01-1.75,1.18-1.65,2.2-3.41s1.08-1.72,2.09-3.47.75-1.91,1.76-3.66c.23-.39.71-.35,1.1-.12.39.23.62.6.4.99-1.01,1.75-1.04,1.74-2.05,3.49s-1.14,1.68-2.15,3.44-.77,1.89-1.79,3.65c-.15.26-.53.49-.81.49ZM112.35,39.44c-.14,0-.25-.22-.38-.29-.39-.23-.59-.7-.36-1.09,1.28-2.22,1.46-2.12,2.74-4.35s1.35-2.19,2.64-4.41,1.02-2.38,2.3-4.61c.23-.39.71-.35,1.1-.12.39.23.62.6.4.99-1.28,2.22-1.31,2.21-2.6,4.43s-1.41,2.15-2.7,4.38-1.04,2.36-2.33,4.59c-.15.26-.53.49-.81.49Z\"><\/path><path class=\"cls-1\" d=\"M51.22,144.97c-.13,0-.34.27-.46.2-.37-.21-.47-.85-.26-1.22,1.17-2.02,1.22-1.99,2.38-4.02s1.09-2.07,2.26-4.1,1.21-2,2.38-4.03c.21-.37.7-.42,1.07-.21.37.21.77.78.56,1.15-1.17,2.02-1.63,1.76-2.79,3.78s-.84,2.22-2.01,4.24-1.3,1.95-2.47,3.98c-.14.25-.39.22-.66.22ZM60.86,128.27c-.13,0-.34.27-.46.2-.37-.21-.47-.85-.26-1.22,1.17-2.02,1.22-1.99,2.38-4.02s1.09-2.07,2.26-4.1,1.21-2,2.38-4.03c.21-.37.7-.42,1.07-.21.37.21.77.78.56,1.15-1.17,2.02-1.63,1.76-2.8,3.78s-.84,2.22-2.01,4.24-1.3,1.95-2.47,3.98c-.14.25-.39.22-.66.22Z\"><\/path><path class=\"cls-1\" d=\"M120.06,145.04c-.27,0-.55-.02-.69-.27-1.06-1.83-1.17-1.77-2.23-3.61s-.64-2.08-1.69-3.92-1.18-1.77-2.24-3.6-1.09-1.82-2.15-3.66-1.13-1.8-2.19-3.64c-.21-.37-.06-.6.31-.81.37-.21.88-.37,1.1,0,1.06,1.84,1.13,1.8,2.19,3.63s.76,2.01,1.82,3.84,1.4,1.64,2.46,3.47,1.03,1.86,2.09,3.7.89,1.94,1.96,3.77c.21.37.03.9-.33,1.11-.12.07-.27-.02-.4-.02ZM106.83,122.12c-.27,0-.55-.02-.69-.27-.95-1.64-1.06-1.58-2.01-3.22s-.52-1.89-1.47-3.54-1.07-1.58-2.02-3.22c-.21-.37-.18-.59.19-.8.36-.21.67-.19.88.18.95,1.64.84,1.71,1.79,3.35s1.3,1.44,2.25,3.09,1.02,1.61,1.97,3.25c.21.37-.18.89-.55,1.1-.12.07-.21.08-.34.08Z\"><\/path><path class=\"cls-1\" d=\"M71.87,61.81c-.28,0-.28-.39-.44-.65-.04-.07-.22.03-.26-.03-.23-.39-.02-.55.37-.78.39-.23.62-.32.84.07.04.07.22-.03.26.04.23.39-.05.81-.44,1.04-.13.08-.2.32-.34.32ZM68.98,56.81c-.28,0-.29-.39-.44-.65-1.25-2.16-1.42-2.05-2.67-4.21s-1.05-2.27-2.3-4.43-1.43-2.06-2.67-4.22c-.23-.39-.24-.9.15-1.12.39-.23.81.05,1.04.44,1.25,2.16,1.27,2.14,2.52,4.3s1.37,2.09,2.62,4.25,1.37,2.09,2.61,4.25c.23.39-.24.66-.63.88-.13.08-.09.52-.22.52ZM58.7,39c-.28,0-.29-.39-.44-.65-1.25-2.16-1.42-2.06-2.67-4.21s-1.05-2.27-2.3-4.43-1.43-2.06-2.67-4.22c-.23-.39-.24-.9.15-1.12.39-.23.81.05,1.04.44,1.25,2.16,1.27,2.14,2.52,4.3s1.37,2.09,2.62,4.25,1.37,2.09,2.61,4.25c.23.39-.24.66-.63.88-.13.08-.09.52-.22.52Z\"><\/path><path class=\"cls-1\" d=\"M52.62,81.71c1.28.37,1.4-.07,2.73-.15s1.31-.5,2.64-.58,1.36.34,2.69.26,1.32-.28,2.65-.35,1.34.05,2.68-.03,1.34-.06,2.67-.14,1.32-.34,2.65-.42,1.36.32,2.7.24,1.33-.19,2.67-.27c1.16-.07,2.37-.55,3.14-1.31s.89-2,.96-3.16c.08-1.33.17-1.33.25-2.66s.23-1.33.31-2.66-.14-1.34-.06-2.68.03-1.34.11-2.67.5-1.31.58-2.64.17-1.33.24-2.66-.15-1.35-.07-2.68.17-1.33.25-2.67.1-1.32-.26-2.61c-.9.09-1.49.27-2.36.42s-1.83.05-2.69.27-1.7.6-2.54.89-1.7.58-2.52.95-1.6.83-2.38,1.26-1.5.98-2.24,1.47-1.6.85-2.3,1.4-1.16,1.4-1.81,2.01-1.58.95-2.19,1.61-1.09,1.44-1.64,2.14-.78,1.63-1.27,2.38-1.31,1.29-1.74,2.07-.81,1.6-1.18,2.42-.71,1.65-1,2.5-.7,1.67-.93,2.54-.35,1.77-.51,2.65-.13,1.97-.21,2.87ZM72.96,72.08c-.96.96-2.26.96-3.22,0-.96-.96-1.26-2.56-.3-3.53.96-.96,2.57-.66,3.53.3.96.96.96,2.26,0,3.23Z\"><\/path><path class=\"cls-1\" d=\"M81.06,93.7c-.07-1.16-.81-2.02-1.58-2.79s-1.64-1.25-2.8-1.32c-1.33-.08-1.34-.05-2.67-.13s-1.32-.34-2.65-.42-1.35.21-2.68.13-1.32-.28-2.65-.36-1.34-.03-2.67-.1-1.31-.47-2.65-.55-1.35.17-2.69.09-1.35.13-2.69.05-1.37-.67-2.66-.3c.09.9.02,1.8.18,2.67s.61,1.71.84,2.56.48,1.72.78,2.56.35,1.79.72,2.61.87,1.58,1.3,2.36.88,1.57,1.38,2.31.92,1.57,1.47,2.27,1.38,1.18,1.99,1.84,1.25,1.27,1.9,1.88,1.13,1.45,1.83,2,1.43,1.1,2.18,1.6,1.57.89,2.36,1.32,1.66.69,2.48,1.06,1.61.81,2.45,1.11,1.81.18,2.68.41,1.71.42,2.6.57,1.76.52,2.66.6c.37-1.28-.4-1.33-.48-2.66s.41-1.36.33-2.7-.1-1.33-.18-2.66-.03-1.34-.11-2.67-.16-1.33-.24-2.66-.17-1.33-.25-2.66-.25-1.33-.33-2.66.07-1.35,0-2.68-.06-1.34-.14-2.68ZM73.05,100.74c-.96.96-2.66,1.19-3.62.23-.96-.96-.92-2.84.04-3.8.96-.96,2.82-.99,3.78-.02.96.96.76,2.63-.2,3.6Z\"><\/path><path class=\"cls-1\" d=\"M94.6,89.68c-1.16.07-2.22.28-2.99,1.05s-1.17,1.82-1.24,2.97c-.08,1.33-.18,1.33-.26,2.66s-.11,1.33-.19,2.67-.25,1.32-.33,2.65-.04,1.34-.12,2.67.13,1.35.05,2.68.15,1.35.07,2.68-.36,1.32-.44,2.65.19,1.35.12,2.69-.92,1.41-.55,2.7c.9-.09,1.91-.32,2.79-.47s1.77-.29,2.63-.52,1.64-.72,2.48-1.02,1.85-.19,2.67-.55,1.43-1.15,2.21-1.58,1.62-.76,2.36-1.25,1.34-1.18,2.04-1.73,1.52-.96,2.17-1.57,1.29-1.23,1.9-1.89,1.22-1.31,1.77-2.01.96-1.5,1.46-2.25,1.25-1.34,1.68-2.12.5-1.75.87-2.56,1.05-1.5,1.35-2.35.44-1.75.67-2.61.42-1.74.58-2.63.25-2.06.34-2.96c-1.28-.37-1.4.62-2.73.7s-1.36-.28-2.69-.2-1.33.17-2.66.25-1.33.09-2.67.17-1.32.26-2.66.34-1.34-.09-2.68-.01-1.33.2-2.66.28-1.38-.37-2.71-.2-1.29.58-2.63.65ZM101.87,100.99c-.96.96-2.73.76-3.69-.2-.96-.96-1.03-2.59-.07-3.55.96-.96,2.58-.89,3.55.07.96.96,1.17,2.72.21,3.68Z\"><\/path><path class=\"cls-1\" d=\"M88.78,51.76c-.37,1.28-.06,1.37.02,2.7s.11,1.33.19,2.67.05,1.33.13,2.66.12,1.33.2,2.66.51,1.31.59,2.64-.18,1.35-.11,2.69.36,1.32.44,2.65-.46,1.37-.38,2.71.24,1.33.32,2.67c.07,1.16.51,2.35,1.28,3.12s1.98.84,3.14.91c1.33.08,1.33.21,2.66.29s1.33.08,2.67.16,1.31.41,2.64.48,1.35-.26,2.69-.18,1.32.28,2.66.35,1.32.28,2.66.36,1.35-.14,2.68-.06,1.34-.05,2.68.03,1.41.71,2.7.35c-.09-.9-.49-1.84-.65-2.71s-.31-1.75-.53-2.61-.06-1.86-.35-2.7-.91-1.57-1.27-2.39-.75-1.62-1.18-2.4-1.01-1.47-1.51-2.21-.68-1.72-1.23-2.42-1.26-1.3-1.86-1.95-1.39-1.13-2.05-1.74-1.21-1.33-1.92-1.88-1.46-1.03-2.21-1.52-1.5-.98-2.28-1.41-1.64-.71-2.46-1.08-1.63-.7-2.48-.99-1.69-.56-2.55-.79-1.72-.46-2.6-.62-1.83-.37-2.72-.46ZM101.61,72.15c-.96.96-2.31.87-3.27-.09s-.98-2.24-.02-3.2c.96-.96,2.24-.94,3.2.02.96.96,1.05,2.31.09,3.28Z\"><\/path><path class=\"cls-1\" d=\"M169.88,83.05c-7.52-.44-7.53-.29-15.05-.73-7.52-.44-7.53-.23-15.05-.67-7.52-.44-7.55.02-15.07-.42-7.52-.44-7.52-.53-15.04-.98-7.52-.44-7.48-1.17-15-1.61-1.87-.11-3.79-.99-3.9-2.86-.44-7.52-.54-7.51-.98-15.03-.44-7.52.45-7.57,0-15.09-.44-7.52-1.07-7.48-1.51-15.01-.44-7.52-.12-7.54-.57-15.06-.44-7.52-1.1-7.48-1.55-15.01C86.13,0,86.22,0,85.64,0s-1.01-.03-1.04.55c-.44,7.52-.09,7.54-.53,15.06-.44,7.52-1.4,7.46-1.85,14.98-.44,7.52.05,7.55-.4,15.07-.44,7.52-.79,7.5-1.23,15.02s.32,7.57-.12,15.09c-.11,1.87-1.95,3.34-3.83,3.46-7.52.44-7.51.65-15.02,1.09-7.52.44-7.53.23-15.05.67-7.52.44-7.5.87-15.02,1.32-7.52.44-7.55.03-15.07.47-7.52.44-7.52.5-15.04.95-.58.03-1.44.44-1.44,1.03s.88.55,1.46.58c7.52.44,7.48,1.14,15,1.59,7.52.44,7.53.28,15.05.72,7.52.44,7.52.5,15.04.94,7.52.44,7.54.15,15.06.59,7.52.44,7.55-.03,15.07.42,1.87.11,3.17,2.29,3.28,4.17.44,7.52-.08,7.55.36,15.07.44,7.52,1.27,7.47,1.71,14.99.44,7.52-.25,7.56.2,15.08.44,7.52.67,7.51,1.11,15.03s.99,7.49,1.44,15.01c.03.58.28.41.86.41s1.17.19,1.21-.39c.44-7.52.15-7.54.59-15.05.44-7.52.76-7.5,1.2-15.02.44-7.52.66-7.51,1.1-15.03.44-7.52.07-7.54.51-15.07.44-7.52.71-7.51,1.15-15.03.11-1.87,1.34-3.7,3.21-3.81,7.52-.44,7.5-.78,15.02-1.22,7.52-.44,7.56.23,15.08-.22,7.52-.44,7.5-.88,15.02-1.32,7.52-.44,7.58.53,15.1.09,7.52-.44,7.51-.57,15.04-1.01.58-.03.44-.94.44-1.52s.15-1.67-.43-1.7ZM158.32,84.76l-7.25.51h0c-3.33.19-3.43,0-6.9.2-3.55.21-3.55.23-7.09.44-3.54.21-3.53.46-7.07.67-3.55.21-3.55.09-7.1.3-3.55.21-3.56.01-7.1.22-3.55.21-3.55.1-7.1.31-3.55.21-3.53.51-7.07.72-3.54.21-3.56-.07-7.1.14-2.76.16-5.18,2.61-5.35,5.37-.21,3.55.28,3.58.07,7.13-.21,3.55-.69,3.52-.9,7.07-.21,3.55-.11,3.55-.32,7.1-.21,3.55-.27,3.54-.48,7.09-.21,3.55.05,3.56-.16,7.11-.21,3.55-.18,3.55-.39,7.09-.21,3.55-.11,3.55-.32,7.1-.2,3.41-.38,3.54-.58,6.68h0s-.43,7.22-.43,7.22c0,0,0,0-.01,0-.01,0-.02,0-.04,0l-.29-5.21c.11-.53.18-1.08.15-1.64-.21-3.55-.51-3.53-.72-7.08-.21-3.55-.17-3.55-.38-7.1-.21-3.55-.37-3.54-.58-7.08-.21-3.55.24-3.57.03-7.12-.21-3.55-.36-3.54-.57-7.08s-.51-3.53-.72-7.07c-.21-3.55.09-3.56-.12-7.11-.21-3.54-.6-3.52-.81-7.07-.16-2.76-2.08-5.13-4.84-5.29-3.55-.21-3.57.07-7.12-.14s-3.55-.14-7.1-.35c-3.55-.21-3.53-.46-7.08-.67-3.54-.21-3.54-.28-7.09-.49-3.55-.21-3.57.11-7.11-.1q-3.55-.21-7.09-.41c-3.55-.21-3.54-.36-7.08-.57-3.55-.21-3.55-.1-7.1-.31-.03,0-.07,0-.1,0l-6.96-.39c0-.07-.01-.12-.01-.19,0,0,0,0,0,0l6.76-.4c.11,0,.23,0,.34,0,3.55-.21,3.55-.19,7.1-.4,3.55-.21,3.54-.38,7.09-.59,3.54-.21,3.56.07,7.11-.14,3.55-.21,3.54-.34,7.09-.55,3.55-.21,3.54-.34,7.08-.55,3.55-.21,3.56.11,7.11-.1,3.55-.21,3.52-.67,7.06-.88,3.54-.21,3.56,0,7.1-.22,2.76-.16,5.16-2.3,5.33-5.06.21-3.55-.1-3.57.11-7.12.21-3.55.55-3.53.76-7.08.21-3.55-.05-3.56.16-7.11.21-3.55.02-3.56.23-7.1.21-3.55.37-3.54.58-7.08.21-3.55.03-3.56.24-7.1q.21-3.55.43-7.09c.21-3.55.59-3.52.8-7.07.03-.46,0-.92-.08-1.38l.34-5.81s0,0,0,0c0,0,0,0,0,0l.31,5.48c-.12.57-.2,1.15-.16,1.73.21,3.55.34,3.54.55,7.09.21,3.55.53,3.53.74,7.08.21,3.55.27,3.54.48,7.09.21,3.55-.02,3.56.19,7.11.21,3.55-.02,3.56.18,7.11.21,3.55.25,3.54.46,7.09.21,3.55.36,3.54.56,7.08.21,3.54.25,3.54.46,7.09.16,2.76,2.35,4.99,5.11,5.15,3.55.21,3.55.16,7.1.37,3.55.21,3.55.28,7.1.49,3.55.21,3.55.17,7.1.38,3.54.21,3.54.22,7.09.43,3.55.21,3.54.39,7.08.6,3.55.21,3.55.17,7.09.37,3.55.21,3.54.29,7.09.5,3.35.2,3.55,0,6.55.15l7.58.45s0,0,0,0c0,0,0,0,0,0Z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n<hr class=\"e-34225f6-980f267 e-divider-base\" data-interaction-id=\"34225f6\"  data-e-type=\"widget\" data-id=\"34225f6\" \/>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-4ae31581 e-con e-atomic-element e-flexbox-base e-4ae31581-815657f section \" data-id=\"4ae31581\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"4ae31581\" id=\"collection\" data-e-type=\"e-flexbox\" data-id=\"4ae31581\">\n    <div class=\"elementor-element elementor-element-471c619 e-flex e-con-boxed e-con e-parent\" data-id=\"471c619\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4f4725f e-con e-atomic-element e-flexbox-base e-4f4725f-90f97df \" data-id=\"4f4725f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"4f4725f\" data-e-type=\"e-flexbox\" data-id=\"4f4725f\">\n    <div class=\"elementor-element elementor-element-5b125c1 e-con e-atomic-element e-flexbox-base e-5b125c1-bb3798f \" data-id=\"5b125c1\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"5b125c1\" data-e-type=\"e-flexbox\" data-id=\"5b125c1\">\n    \t\t\t<h3 data-interaction-id=\"076f5ec\" class=\"e-076f5ec-e3c0bd7 h3 e-heading-base\" data-e-type=\"widget\" data-id=\"076f5ec\" >Experience the islands of Tahiti for the Festive Season<\/h3>\n\t\t<div class=\"elementor-element elementor-element-806c9de e-con e-atomic-element e-flexbox-base e-806c9de-801233c \" data-id=\"806c9de\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"806c9de\" data-e-type=\"e-flexbox\" data-id=\"806c9de\">\n    \t\t\t<p class=\"e-197ad2d-48ab68a body-text-small e-paragraph-base\" data-interaction-id=\"197ad2d\" data-e-type=\"widget\" data-id=\"197ad2d\">From the turquoise stillness of Bora Bora\u2019s lagoon to Taha\u2019a\u2019s vanilla-scented valleys and the pale sands of Tikehau, the festive season unfolds across French Polynesia. A time for gathering, for island ritual, for evenings that stretch beneath an open sky.<\/p>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\t\t<div class=\"elementor-element elementor-element-85aa8a8 elementor-widget__width-initial pagination-light elementor-pagination-position-inside elementor-pagination-type-bullets elementor-widget elementor-widget-n-carousel\" data-id=\"85aa8a8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;carousel_items&quot;:[{&quot;slide_title&quot;:&quot;BOB&quot;,&quot;_id&quot;:&quot;046cca1&quot;},{&quot;slide_title&quot;:&quot;TAH&quot;,&quot;_id&quot;:&quot;6527683&quot;}],&quot;slides_to_show&quot;:&quot;1&quot;,&quot;offset_width&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:140,&quot;sizes&quot;:[]},&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:32,&quot;sizes&quot;:[]},&quot;slides_to_scroll_tablet&quot;:&quot;1&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:24,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:24,&quot;sizes&quot;:[]},&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;offset_sides&quot;:&quot;both&quot;,&quot;offset_width_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;offset_width_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;pagination&quot;:&quot;bullets&quot;}\" data-widget_type=\"nested-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-carousel swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"1\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 sur 2\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-15f631c e-flex e-con-boxed e-con e-child\" data-id=\"15f631c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-53f1e8c e-con e-atomic-element e-flexbox-base e-53f1e8c-76b1cda festive-season-bg \" data-id=\"53f1e8c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"53f1e8c\" data-e-type=\"e-flexbox\" data-id=\"53f1e8c\">\n    \t\t\t<a href=\"https:\/\/pearlresorts.com\/fr\/festive-season-le-bora-bora\/\" target=\"_blank\" class=\"e-image-link-base\" data-interaction-id=\"5e092ef\"\n\t><img loading=\"lazy\" decoding=\"async\" class=\"e-image-base e-5e092ef-e086586\" data-e-type=\"widget\" data-id=\"5e092ef\" id=\"3681\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/bob.webp\" width=\"1920\" height=\"1080\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/bob.webp 1920w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/bob-300x169.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/bob-1024x576.webp 1024w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/bob-768x432.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/bob-1536x864.webp 1536w\" alt=\"\"\/>\t<\/a>\t\t<div class=\"elementor-element elementor-element-6be1180 e-con e-atomic-element e-flexbox-base e-6be1180-cfb4fcb \" data-id=\"6be1180\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6be1180\" data-e-type=\"e-flexbox\" data-id=\"6be1180\">\n    <div class=\"elementor-element elementor-element-c4561ee e-con e-atomic-element e-flexbox-base e-c4561ee-ce2c3dc \" data-id=\"c4561ee\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"c4561ee\" data-e-type=\"e-flexbox\" data-id=\"c4561ee\">\n    \t\t\t<h3 data-interaction-id=\"56635c5\" class=\"e-56635c5-6d2ba2e eyebrow e-heading-base\" data-e-type=\"widget\" data-id=\"56635c5\" >Society Islands<\/h3>\n\t\t\t\t\t<h3 data-interaction-id=\"0d211f4\" class=\"e-0d211f4-7aee903 h4 e-heading-base\" data-e-type=\"widget\" data-id=\"0d211f4\" >Le Bora Bora<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-a4c2094 e-con e-atomic-element e-flexbox-base e-a4c2094-1b5751c \" data-id=\"a4c2094\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"a4c2094\" data-e-type=\"e-flexbox\" data-id=\"a4c2094\">\n    \t\t\t<p class=\"e-b3f0f02-be0ff82 body-text-small e-paragraph-base\" data-interaction-id=\"b3f0f02\" data-e-type=\"widget\" data-id=\"b3f0f02\">An evening beneath Bora Bora\u2019s stars, a table set for the season, Polynesian dance drifting through the warm air, and music lingering long after dinner.<\/p>\n\t\t<div class=\"elementor-element elementor-element-f220e3b e-con e-atomic-element e-flexbox-base e-f220e3b-d7675a6 \" data-id=\"f220e3b\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"f220e3b\" data-e-type=\"e-flexbox\" data-id=\"f220e3b\">\n    \t\t<div class=\"elementor-element elementor-element-4349736 elementor-widget elementor-widget-button\" data-id=\"4349736\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/pearlresorts.com\/festive-season-le-bora-bora\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover the program<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" data-slide=\"2\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 sur 2\">\n\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f9fe2dd e-flex e-con-boxed e-con e-child\" data-id=\"f9fe2dd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-073f9a6 e-con e-atomic-element e-flexbox-base e-073f9a6-a2b9874 festive-season-bg \" data-id=\"073f9a6\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"073f9a6\" data-e-type=\"e-flexbox\" data-id=\"073f9a6\">\n    \t\t\t<a href=\"https:\/\/pearlresorts.com\/fr\/festive-season-le-tahaa\/\" target=\"_blank\" class=\"e-image-link-base\" data-interaction-id=\"f33fb32\"\n\t><img loading=\"lazy\" decoding=\"async\" class=\"e-image-base e-f33fb32-8ebf0d8\" data-e-type=\"widget\" data-id=\"f33fb32\" id=\"3682\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah.webp\" width=\"1920\" height=\"1080\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah.webp 1920w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah-300x169.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah-1024x576.webp 1024w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah-768x432.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tah-1536x864.webp 1536w\" alt=\"\"\/>\t<\/a>\t\t<div class=\"elementor-element elementor-element-bdc0be9 e-con e-atomic-element e-flexbox-base e-bdc0be9-c746a5c \" data-id=\"bdc0be9\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"bdc0be9\" data-e-type=\"e-flexbox\" data-id=\"bdc0be9\">\n    <div class=\"elementor-element elementor-element-3672f88 e-con e-atomic-element e-flexbox-base e-3672f88-353a560 \" data-id=\"3672f88\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"3672f88\" data-e-type=\"e-flexbox\" data-id=\"3672f88\">\n    \t\t\t<h3 data-interaction-id=\"ba118ea\" class=\"e-ba118ea-1a50be5 eyebrow white-text e-heading-base\" data-e-type=\"widget\" data-id=\"ba118ea\" >Society Islands<\/h3>\n\t\t\t\t\t<h3 data-interaction-id=\"c4b319c\" class=\"e-c4b319c-125d5fe h4 white-text e-heading-base\" data-e-type=\"widget\" data-id=\"c4b319c\" >Le Taha'a<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-221830d e-con e-atomic-element e-flexbox-base e-221830d-b1a8aed \" data-id=\"221830d\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"221830d\" data-e-type=\"e-flexbox\" data-id=\"221830d\">\n    \t\t\t<p class=\"e-3d33855-9183c9e body-text-small white-text e-paragraph-base\" data-interaction-id=\"3d33855\" data-e-type=\"widget\" data-id=\"3d33855\">The night unfolds slowly: Polynesian dance, a table set for celebration, music drifting across the lagoon, and fireworks beneath the stars.<\/p>\n\t\t<div class=\"elementor-element elementor-element-465169e e-con e-atomic-element e-flexbox-base e-465169e-071831e \" data-id=\"465169e\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"465169e\" data-e-type=\"e-flexbox\" data-id=\"465169e\">\n    \t\t<div class=\"elementor-element elementor-element-62ec1c5 elementor-widget elementor-widget-button\" data-id=\"62ec1c5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/pearlresorts.com\/festive-season-le-tahaa\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Discover the program<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\n<\/div>\n\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-988c893 e-con e-atomic-element e-flexbox-base e-988c893-eb2529c section festive-season-bg \" data-id=\"988c893\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"988c893\" id=\"conditions\" data-e-type=\"e-flexbox\" data-id=\"988c893\">\n    <div class=\"elementor-element elementor-element-d768a63 e-con e-atomic-element e-flexbox-base e-d768a63-095ad37 \" data-id=\"d768a63\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"d768a63\" id=\"conditions\" data-e-type=\"e-flexbox\" data-id=\"d768a63\">\n    \t\t\t<h3 data-interaction-id=\"16479a3\" class=\"e-16479a3-657a583 h3 e-heading-base\" data-e-type=\"widget\" data-id=\"16479a3\" >Frequently asked questions<\/h3>\n\t\t\t\t<div class=\"elementor-element elementor-element-ef8cb89 elementor-widget__width-initial elementor-widget elementor-widget-n-accordion\" data-id=\"ef8cb89\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:200,&quot;sizes&quot;:[]},&quot;_animation&quot;:&quot;none&quot;,&quot;default_state&quot;:&quot;expanded&quot;,&quot;max_items_expended&quot;:&quot;one&quot;}\" data-widget_type=\"nested-accordion.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-accordion\" aria-label=\"Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys\">\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-2510\" class=\"e-n-accordion-item\" open>\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"1\" tabindex=\"0\" aria-expanded=\"true\" aria-controls=\"e-n-accordion-item-2510\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Rate Policies for the Festive Season <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-2510\" class=\"elementor-element elementor-element-1cf4095 e-con-full e-flex e-con e-child\" data-id=\"1cf4095\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-e66c153-bcfaa99 body-text-small e-paragraph-base\" data-interaction-id=\"e66c153\" data-e-type=\"widget\" data-id=\"e66c153\">(Excluding Salon du Tourisme rates and conditions)<\/p>\n\t\t\t\t\t<p class=\"e-034d081-622032e body-text-small e-paragraph-base\" data-interaction-id=\"034d081\" data-e-type=\"widget\" data-id=\"034d081\">If you are staying during the festive season,&nbsp;please note that both the Christmas Eve Dinner&nbsp;and the New Year\u2019s Eve Dinner are mandatory for all guests. These dinners must be prepaid at the following rates:<\/p>\n\t\t\t\t\t<p class=\"e-970fb95-fc72417 body-text-small e-paragraph-base\" data-interaction-id=\"970fb95\" data-e-type=\"widget\" data-id=\"970fb95\">Christmas Eve Dinner on December 24, 2026,&nbsp;at the Poreho Restaurant<br>- Adult (13 years and above): 28,500 XPF including tax<br>- Child (3-12 years): 14,250&nbsp;XPF including tax<\/p>\n\t\t\t\t\t<p class=\"e-8fbe0c5-98704af body-text-small e-paragraph-base\" data-interaction-id=\"8fbe0c5\" data-e-type=\"widget\" data-id=\"8fbe0c5\">Christmas Eve dinner includes: \u00bd bottle of champagne for 2, buffet dinner with musical entertainment, chocolate box.<\/p>\n\t\t\t\t\t<p class=\"e-6acde02-fc68931 body-text-small e-paragraph-base\" data-interaction-id=\"6acde02\" data-e-type=\"widget\" data-id=\"6acde02\">New Years&nbsp;Eve Dinner on December&nbsp;31, 2026,&nbsp;at the Poreho Restaurant<br>- Adult (13 years and above): 44,500 XPF including tax<br>- Child (3-12 years): 22,250&nbsp;XPF including tax<\/p>\n\t\t\t\t\t<p class=\"e-0b43798-88924ab body-text-small e-paragraph-base\" data-interaction-id=\"0b43798\" data-e-type=\"widget\" data-id=\"0b43798\">New Year\u2019s Eve dinner includes: Welcome cocktail, \u00bd bottle of champagne for 2, buffet dinner with musical entertainment, chocolate box.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-2511\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"2\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-2511\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Getting to the property <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-2511\" class=\"elementor-element elementor-element-7abf4ed e-con-full e-flex e-con e-child\" data-id=\"7abf4ed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-ef9dc59-b189dbf body-text-small e-paragraph-base\" data-interaction-id=\"ef9dc59\" data-e-type=\"widget\" data-id=\"ef9dc59\">The&nbsp;hotel is located on a private islet, approximately 25 minutes by boat from the pier of Tikehau. From Tahiti and Bora Bora, there are flights to the island of Tikehau with the domestic carrier&nbsp;Air Tahiti. Airport code: TIH.<\/p>\n\t\t\t\t\t<p class=\"e-032ed8c-8fbd7c2 body-text-small e-paragraph-base\" data-interaction-id=\"032ed8c\" data-e-type=\"widget\" data-id=\"032ed8c\">In order to organize your boat transfers between the airport and the resort, please send us your arrival and departure domestic flight details (flight number and time). Airport transfers are complimentary based on one round trip per person and per stay.<\/p>\n\t\t\t\t\t<p class=\"e-8a86758-349d0d9 body-text-small e-paragraph-base\" data-interaction-id=\"8a86758\" data-e-type=\"widget\" data-id=\"8a86758\">Additional airport transfers will be charged at following rates:<br>- Adult: 4,810 XPF tax included per adult per way<br>- Child (3-12 years): 3,655 XPF tax included per child per way<br>- Infant (0-2 years): Free of charge<\/p>\n\t\t\t\t\t<p class=\"e-f28e930-9eceeb9 body-text-small e-paragraph-base\" data-interaction-id=\"f28e930\" data-e-type=\"widget\" data-id=\"f28e930\">At your arrival at the airport, you will be greeted by our representative and escorted to the hotel's shuttle boat.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-2512\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"3\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-2512\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> What is included in the Room Rate <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-2512\" class=\"elementor-element elementor-element-28cc729 e-con-full e-flex e-con e-child\" data-id=\"28cc729\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-691d1bb-e6e7020 body-text-small e-paragraph-base\" data-interaction-id=\"691d1bb\" data-e-type=\"widget\" data-id=\"691d1bb\">All room rates include:<br>- Complimentary American breakfast included, served at the Hawaiki Nui Restaurant (room service not included)<br>- Complimentary Mini Bar (set selection of soft drinks and snacks), refilled once daily<br>- Complimentary Wi-Fi<\/p>\n\t\t\t\t\t<p class=\"e-ef9dc59-b189dbf body-text-small e-paragraph-base\" data-interaction-id=\"012f1c0\" data-e-type=\"widget\" data-id=\"012f1c0\"><strong><u>Check-in&nbsp;3:00 p.m. \u2502 Check-out 11:00 a.m.<\/u><\/strong><\/p>\n\t\t\t\t\t<p class=\"e-032ed8c-8fbd7c2 body-text-small e-paragraph-base\" data-interaction-id=\"f9f2d6f\" data-e-type=\"widget\" data-id=\"f9f2d6f\">Rooms are available from&nbsp;3:00 p.m. on the day of arrival until 11:00 a.m. on the day of departure.<br>Early check-in and late check-out are subject to availability and may incur additional fees.<br>Luggage may be stored at reception if needed.<\/p>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-2513\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"4\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-2513\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Booking Policies <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M19 11H13V5C13 4.73478 12.8946 4.48043 12.7071 4.29289C12.5196 4.10536 12.2652 4 12 4C11.7348 4 11.4804 4.10536 11.2929 4.29289C11.1054 4.48043 11 4.73478 11 5V11H5C4.73478 11 4.48043 11.1054 4.29289 11.2929C4.10536 11.4804 4 11.7348 4 12C4 12.2652 4.10536 12.5196 4.29289 12.7071C4.48043 12.8946 4.73478 13 5 13H11V19C11 19.2652 11.1054 19.5196 11.2929 19.7071C11.4804 19.8946 11.7348 20 12 20C12.2652 20 12.5196 19.8946 12.7071 19.7071C12.8946 19.5196 13 19.2652 13 19V13H19C19.2652 13 19.5196 12.8946 19.7071 12.7071C19.8946 12.5196 20 12.2652 20 12C20 11.7348 19.8946 11.4804 19.7071 11.2929C19.5196 11.1054 19.2652 11 19 11Z\" fill=\"black\"><\/path><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-2513\" class=\"elementor-element elementor-element-6f48aaa e-flex e-con-boxed e-con e-child\" data-id=\"6f48aaa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<p class=\"e-b49735c-ee8b671 body-text-small e-paragraph-base\" data-interaction-id=\"b49735c\" data-e-type=\"widget\" data-id=\"b49735c\"><u>Guarantee<\/u><\/p>\n\t\t\t\t\t<p class=\"e-293beb9-453ce3a body-text-small e-paragraph-base\" data-interaction-id=\"293beb9\" data-e-type=\"widget\" data-id=\"293beb9\">A one-night deposit is required at time of booking.&nbsp;The remaining balance is payable directly at the hotel.<\/p>\n\t\t\t\t\t<p class=\"e-4c63ef7-c02490e body-text-small e-paragraph-base\" data-interaction-id=\"4c63ef7\" data-e-type=\"widget\" data-id=\"4c63ef7\"><u>Cancellation \/ Modification Policy<\/u><\/p>\n\t\t\t\t\t<p class=\"e-2e4f193-7561e54 body-text-small e-paragraph-base\" data-interaction-id=\"2e4f193\" data-e-type=\"widget\" data-id=\"2e4f193\">- Bookings cancelled up to&nbsp;15&nbsp;days prior to the scheduled arrival date at the resort: no penalty.<br>- Bookings cancelled between&nbsp;14&nbsp;and 1 day prior to the scheduled arrival date at the resort: a&nbsp;2-night cancellation fee (plus applicable taxes) will be charged.<br>- Bookings cancelled on the day of arrival or during the stay, will be charged for the full amount of the stay.<\/p>\n\t\t\t\t\t<p class=\"e-7fd8106-27163bd body-text-small e-paragraph-base\" data-interaction-id=\"7fd8106\" data-e-type=\"widget\" data-id=\"7fd8106\">The same conditions apply to shortened stays.<\/p>\n\t\t\t\t\t<p class=\"e-210a4ad-5c76cc2 body-text-small e-paragraph-base\" data-interaction-id=\"210a4ad\" data-e-type=\"widget\" data-id=\"210a4ad\"><u>No shows<\/u><\/p>\n\t\t\t\t\t<p class=\"e-8e6607b-d0796f9 body-text-small e-paragraph-base\" data-interaction-id=\"8e6607b\" data-e-type=\"widget\" data-id=\"8e6607b\">- The full stay, plus applicable taxes.<br>- Unused nights will not be refunded in the event of a no-show or unscheduled arrival resulting in a shorter stay than scheduled.<\/p>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-d2cd2b2 e-con e-atomic-element e-flexbox-base e-d2cd2b2-8980857 main-header festive-season-bg \" data-id=\"d2cd2b2\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"d2cd2b2\" data-e-type=\"e-flexbox\" data-id=\"d2cd2b2\">\n    <div class=\"elementor-element elementor-element-ec27d42 e-con e-atomic-element e-flexbox-base e-ec27d42-9513e8d \" data-id=\"ec27d42\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"ec27d42\" data-e-type=\"e-flexbox\" data-id=\"ec27d42\">\n    \t\t<div class=\"elementor-element elementor-element-cc51b64 elementor-tablet-align-justify elementor-widget-tablet__width-inherit elementor-widget elementor-widget-button\" data-id=\"cc51b64\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Book your stay<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n<\/div>\n\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Festive Season &nbsp; \u3009 Le Tikehau The program About The collection Conditions Book now About Festive Program Our collection Conditions About Festive Program Our collection Conditions Celebrate the festive season at Le Tikehau In Tikehau, the night belongs to the stars. Far from artificial light, the sky unfolds with a clarity rarely found elsewhere. From [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-4795","page","type-page","status-publish","hentry"],"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"acf":[],"_links":{"self":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages\/4795","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/comments?post=4795"}],"version-history":[{"count":826,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages\/4795\/revisions"}],"predecessor-version":[{"id":7955,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages\/4795\/revisions\/7955"}],"wp:attachment":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/media?parent=4795"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}