{"id":6413,"date":"2026-08-28T04:06:10","date_gmt":"2026-08-28T04:06:10","guid":{"rendered":"https:\/\/pearlresorts.com\/?page_id=6413"},"modified":"2026-09-03T05:28:45","modified_gmt":"2026-09-03T05:28:45","slug":"festive-season-le-tahaa","status":"publish","type":"page","link":"https:\/\/pearlresorts.com\/fr\/festive-season-le-tahaa\/","title":{"rendered":"Festive Season &#8211; Le Taha&#8217;a"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"6413\" class=\"elementor elementor-6413\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-69d5156 e-con e-atomic-element e-flexbox-base e-69d5156-d5c910e \" data-id=\"69d5156\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"69d5156\" data-e-type=\"e-flexbox\" data-id=\"69d5156\">\n    \t\t<div class=\"elementor-element elementor-element-63e31b58 elementor-widget elementor-widget-html\" data-id=\"63e31b58\" 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-7741fe32 e-con e-atomic-element e-flexbox-base e-7741fe32-7b3c2fe main-header festive-season-bg \" data-id=\"7741fe32\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"7741fe32\" data-e-type=\"e-flexbox\" data-id=\"7741fe32\">\n    <div class=\"elementor-element elementor-element-4287d262 e-con e-atomic-element e-flexbox-base e-4287d262-f4a14ee \" data-id=\"4287d262\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"4287d262\" data-e-type=\"e-flexbox\" data-id=\"4287d262\">\n    <div class=\"elementor-element elementor-element-2e17b279 e-con e-atomic-element e-flexbox-base e-2e17b279-2bf2876 \" data-id=\"2e17b279\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2e17b279\" data-e-type=\"e-flexbox\" data-id=\"2e17b279\">\n    \t\t\t<h2 data-interaction-id=\"312d99f7\" class=\"e-312d99f7-6b23706 body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"312d99f7\"><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=\"7630bce7\" class=\"e-7630bce7-86dd8c9 body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"7630bce7\">&nbsp; \u3009<\/h2>\n\t\t\t\t\t<h2 data-interaction-id=\"3c8e056\" class=\"e-3c8e056-f377343 body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"3c8e056\">Le Taha'a<\/h2>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-13110a3f e-con e-atomic-element e-flexbox-base e-13110a3f-4d63fe3 \" data-id=\"13110a3f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"13110a3f\" data-e-type=\"e-flexbox\" data-id=\"13110a3f\">\n    \t\t\t<h2 data-interaction-id=\"282e9a54\" class=\"body-text-small e-282e9a54-fc8b7d6 subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"282e9a54\"><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=\"58f9e23e\" class=\"body-text-small e-58f9e23e-d30c83a subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"58f9e23e\"><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=\"1a84a374\" class=\"e-1a84a374-99fc4e8 body-text-small subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"1a84a374\"><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=\"5d5c18d7\" class=\"body-text-small e-5d5c18d7-5be6934 subnav-link e-heading-base\" data-e-type=\"widget\" data-id=\"5d5c18d7\"><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-5184fe8d e-con e-atomic-element e-flexbox-base e-5184fe8d-ebf1219 \" data-id=\"5184fe8d\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"5184fe8d\" data-e-type=\"e-flexbox\" data-id=\"5184fe8d\">\n    \t\t<div class=\"elementor-element elementor-element-7482af8f elementor-widget elementor-widget-button\" data-id=\"7482af8f\" 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-3df9bc3a e-con e-atomic-element e-flexbox-base e-3df9bc3a-334e0aa \" data-id=\"3df9bc3a\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"3df9bc3a\" data-e-type=\"e-flexbox\" data-id=\"3df9bc3a\">\n    \t\t<div class=\"elementor-element elementor-element-324c5733 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"324c5733\" 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-61afc8e4 elementor-widget elementor-widget-off-canvas\" data-id=\"61afc8e4\" 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-61afc8e4\" 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-1425f2e0 e-con-full festive-season-bg e-flex e-con e-child\" data-id=\"1425f2e0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<h2 data-interaction-id=\"2667b664\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"2667b664\"><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-48c1f4f6-17026a1 e-divider-base\" data-interaction-id=\"48c1f4f6\"  data-e-type=\"widget\" data-id=\"48c1f4f6\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"4db51630\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"4db51630\">Festive Program<\/h2>\n\t\t\t\t\t\n<hr class=\"e-3b9d104d-d2e82fd e-divider-base\" data-interaction-id=\"3b9d104d\"  data-e-type=\"widget\" data-id=\"3b9d104d\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"e6ac327\" class=\"white-text body-text-small e-heading-base\" data-e-type=\"widget\" data-id=\"e6ac327\">Our collection<\/h2>\n\t\t\t\t\t\n<hr class=\"e-29b01cb3-350880d e-divider-base\" data-interaction-id=\"29b01cb3\"  data-e-type=\"widget\" data-id=\"29b01cb3\" \/>\n\t\t\t\t\t<h2 data-interaction-id=\"7b9f73ab\" class=\"body-text-small white-text e-heading-base\" data-e-type=\"widget\" data-id=\"7b9f73ab\">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-87b5d8c e-con e-atomic-element e-flexbox-base e-87b5d8c-98ca5ad \" data-id=\"87b5d8c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"87b5d8c\" id=\"program\" data-e-type=\"e-flexbox\" data-id=\"87b5d8c\">\n    <div class=\"elementor-element elementor-element-77b923b3 e-con e-atomic-element e-flexbox-base e-77b923b3-a7da57c \" data-id=\"77b923b3\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"77b923b3\" data-e-type=\"e-flexbox\" data-id=\"77b923b3\">\n    <div class=\"elementor-element elementor-element-4a333699 e-con e-atomic-element e-flexbox-base e-4a333699-eaf6092 \" data-id=\"4a333699\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"4a333699\" data-e-type=\"e-flexbox\" data-id=\"4a333699\">\n    <div class=\"elementor-element elementor-element-5b7f98e2 e-con e-atomic-element e-flexbox-base e-5b7f98e2-ec371e5 \" data-id=\"5b7f98e2\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"5b7f98e2\" data-e-type=\"e-flexbox\" data-id=\"5b7f98e2\">\n    <div class=\"elementor-element elementor-element-2be52921 e-con e-atomic-element e-flexbox-base e-2be52921-9bed9ab \" data-id=\"2be52921\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2be52921\" data-e-type=\"e-flexbox\" data-id=\"2be52921\">\n    \t\t<div class=\"elementor-element elementor-element-345cd45 elementor-widget__width-inherit elementor-widget-tablet__width-inherit elementor-widget-mobile__width-initial elementor-widget elementor-widget-heading\" data-id=\"345cd45\" 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 Taha'a<\/h3>\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-6b8b4639 e-con e-atomic-element e-flexbox-base e-6b8b4639-8d981bb \" data-id=\"6b8b4639\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6b8b4639\" data-e-type=\"e-flexbox\" data-id=\"6b8b4639\">\n    \n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-c93ca06 e-con e-atomic-element e-flexbox-base e-c93ca06-4f291b3 \" data-id=\"c93ca06\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"c93ca06\" data-e-type=\"e-flexbox\" data-id=\"c93ca06\">\n    <div class=\"elementor-element elementor-element-6a679389 e-con e-atomic-element e-flexbox-base e-6a679389-adefd45 \" data-id=\"6a679389\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6a679389\" data-e-type=\"e-flexbox\" data-id=\"6a679389\">\n    \n<\/div>\n<div class=\"elementor-element elementor-element-45fe42c2 e-con e-atomic-element e-flexbox-base e-45fe42c2-c0f232c \" data-id=\"45fe42c2\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"45fe42c2\" data-e-type=\"e-flexbox\" data-id=\"45fe42c2\">\n    \t\t\t<p class=\"e-184a6cae-05689e2 body-text-small e-paragraph-base\" data-interaction-id=\"184a6cae\" data-e-type=\"widget\" data-id=\"184a6cae\" >At Le Taha'a, time seems to move differently. Between the lagoon and the lush vegetation of its private motu, life follows the rhythm of the water, the turn from day into night, and the quiet moments shared together.<\/p>\n\t\t\t\t\t<p class=\"e-15a475cf-cfd724d body-text-small e-paragraph-base\" data-interaction-id=\"15a475cf\" data-e-type=\"widget\" data-id=\"15a475cf\" >Here, contemplation is part of the journey. In the open-air fare, on the terraces of the bungalows or beneath the star-filled sky after a festive dinner, every setting invites you to linger, to look upwards and, simply, to be present.<\/p>\n\t\t\n<\/div>\n\n<\/div>\n\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-71187413 e-con e-atomic-element e-flexbox-base e-71187413-fc6a8bd \" data-id=\"71187413\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"71187413\" data-e-type=\"e-flexbox\" data-id=\"71187413\">\n    \t\t<div class=\"elementor-element elementor-element-38cfce4e elementor-widget elementor-widget-button\" data-id=\"38cfce4e\" 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.calameo.com\/pearlresortsoftahiti\/read\/00571632085bf98954f2c\" 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\">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-2fb0fadc e-con e-atomic-element e-flexbox-base e-2fb0fadc-f0bc799 \" data-id=\"2fb0fadc\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2fb0fadc\" data-e-type=\"e-flexbox\" data-id=\"2fb0fadc\">\n    <div class=\"elementor-element elementor-element-6fedfe27 e-con e-atomic-element e-flexbox-base e-6fedfe27-1ae45e5 \" data-id=\"6fedfe27\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"6fedfe27\" data-e-type=\"e-flexbox\" data-id=\"6fedfe27\">\n    \t\t\t\n<hr class=\"e-7163ddcd-b34a920 e-divider-base\" data-interaction-id=\"7163ddcd\"  data-e-type=\"widget\" data-id=\"7163ddcd\" \/>\n\t\t\t\t<div class=\"elementor-element elementor-element-1be1fa77 elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"1be1fa77\" 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-764f462c-bc4cadc e-divider-base\" data-interaction-id=\"764f462c\"  data-e-type=\"widget\" data-id=\"764f462c\" \/>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-39642cc6 e-con e-atomic-element e-flexbox-base e-39642cc6-70f0d87 \" data-id=\"39642cc6\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"39642cc6\" id=\"about\" data-e-type=\"e-flexbox\" data-id=\"39642cc6\">\n    <div class=\"elementor-element elementor-element-18655a62 e-con e-atomic-element e-flexbox-base e-18655a62-78f39ca \" data-id=\"18655a62\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"18655a62\" data-e-type=\"e-flexbox\" data-id=\"18655a62\">\n    <div class=\"elementor-element elementor-element-2294a18c e-con e-atomic-element e-flexbox-base e-2294a18c-6a30c30 \" data-id=\"2294a18c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2294a18c\" data-e-type=\"e-flexbox\" data-id=\"2294a18c\">\n    \t\t\t<img fetchpriority=\"high\" decoding=\"async\" class=\"e-image-base e-1b96a5c8-1123584\" data-interaction-id=\"1b96a5c8\" data-e-type=\"widget\" data-id=\"1b96a5c8\" id=\"6934\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/le-tahaa-aerial-view.webp\" width=\"1920\" height=\"1080\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/le-tahaa-aerial-view.webp 1920w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/le-tahaa-aerial-view-300x169.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/le-tahaa-aerial-view-1024x576.webp 1024w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/le-tahaa-aerial-view-768x432.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/le-tahaa-aerial-view-1536x864.webp 1536w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/le-tahaa-aerial-view-18x10.webp 18w\" alt=\"\"\/>\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-53042b82 e-con e-atomic-element e-flexbox-base e-53042b82-c133177 \" data-id=\"53042b82\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"53042b82\" data-e-type=\"e-flexbox\" data-id=\"53042b82\">\n    \t\t<div class=\"elementor-element elementor-element-5a1d2c7d elementor-widget elementor-widget-heading\" data-id=\"5a1d2c7d\" 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=\"73628406\" class=\"e-73628406-ac48e24 h2 e-heading-base\" data-e-type=\"widget\" data-id=\"73628406\" >Le Taha'a<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-722ad4a2 e-con e-atomic-element e-flexbox-base e-722ad4a2-ec1dce0 \" data-id=\"722ad4a2\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"722ad4a2\" data-e-type=\"e-flexbox\" data-id=\"722ad4a2\">\n    \t\t\t<p class=\"e-b3130a9-639aca4 body-text-small e-paragraph-base\" data-interaction-id=\"b3130a9\" data-e-type=\"widget\" data-id=\"b3130a9\">On an island where the scent of vanilla lingers in the air, Le Taha'a, a Relais &amp; Ch\u00e2teaux member, places the art of hospitality at its heart. A welcome deeply Polynesian in spirit \u2014 generous, unassuming, sincere \u2014 where every gesture carries meaning.<\/p>\n\t\t\n<\/div>\n\n<\/div>\n\t\t<div class=\"elementor-element elementor-element-4b22fb5c 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=\"4b22fb5c\" 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-6bb46975 e-flex e-con-boxed e-con e-child\" data-id=\"6bb46975\" 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-ce1ab78 e-con e-atomic-element e-flexbox-base e-ce1ab78-a620a03 \" data-id=\"ce1ab78\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"ce1ab78\" data-e-type=\"e-flexbox\" data-id=\"ce1ab78\">\n    \t\t\t<img decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"7e875201\" data-e-type=\"widget\" data-id=\"7e875201\" id=\"6302\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-06.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-06.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-06-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-06-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-06-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-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-4d88581b e-flex e-con-boxed e-con e-child\" data-id=\"4d88581b\" 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-c6f57c e-con e-atomic-element e-flexbox-base e-c6f57c-9452b7e \" data-id=\"c6f57c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"c6f57c\" data-e-type=\"e-flexbox\" data-id=\"c6f57c\">\n    \t\t\t<img decoding=\"async\" class=\"e-image-base e-276ed5c1-eae1ba1\" data-interaction-id=\"276ed5c1\" data-e-type=\"widget\" data-id=\"276ed5c1\" id=\"6303\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-07.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-07.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-07-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-07-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-07-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=\"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-75e59c17 e-flex e-con-boxed e-con e-child\" data-id=\"75e59c17\" 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-684d2a2b e-con e-atomic-element e-flexbox-base e-684d2a2b-e5ec971 \" data-id=\"684d2a2b\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"684d2a2b\" data-e-type=\"e-flexbox\" data-id=\"684d2a2b\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"4c24c4cc\" data-e-type=\"widget\" data-id=\"4c24c4cc\" id=\"6304\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-08.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-08.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-08-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-08-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-08-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-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-3433d3ef e-flex e-con-boxed e-con e-child\" data-id=\"3433d3ef\" 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-23dabfca e-con e-atomic-element e-flexbox-base e-23dabfca-595b95b \" data-id=\"23dabfca\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"23dabfca\" data-e-type=\"e-flexbox\" data-id=\"23dabfca\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"3c6ca1d8\" data-e-type=\"widget\" data-id=\"3c6ca1d8\" id=\"6305\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-09.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-09.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-09-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-09-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-09-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-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-4abf4e5d e-con-full e-flex e-con e-child\" data-id=\"4abf4e5d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-49c8c1b0 e-con e-atomic-element e-flexbox-base e-49c8c1b0-74e2bbf \" data-id=\"49c8c1b0\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"49c8c1b0\" data-e-type=\"e-flexbox\" data-id=\"49c8c1b0\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"368a1f6a\" data-e-type=\"widget\" data-id=\"368a1f6a\" id=\"6306\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-10.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-10.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-10-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-10-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-10-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\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-50aef2cf e-flex e-con-boxed e-con e-child\" data-id=\"50aef2cf\" 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-29aba69b e-con e-atomic-element e-flexbox-base e-29aba69b-928bf6e \" data-id=\"29aba69b\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"29aba69b\" data-e-type=\"e-flexbox\" data-id=\"29aba69b\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"27a46ed2\" data-e-type=\"widget\" data-id=\"27a46ed2\" id=\"6297\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-01.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-01.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-01-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-01-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-01-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-01-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=\"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-7fa6572b e-flex e-con-boxed e-con e-child\" data-id=\"7fa6572b\" 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-1fa30fd3 e-con e-atomic-element e-flexbox-base e-1fa30fd3-8013db3 \" data-id=\"1fa30fd3\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1fa30fd3\" data-e-type=\"e-flexbox\" data-id=\"1fa30fd3\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"3906a2f0\" data-e-type=\"widget\" data-id=\"3906a2f0\" id=\"6298\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-02.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-02.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-02-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-02-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-02-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-02-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=\"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-d7b366c e-flex e-con-boxed e-con e-child\" data-id=\"d7b366c\" 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-768a21dc e-con e-atomic-element e-flexbox-base e-768a21dc-dc15882 \" data-id=\"768a21dc\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"768a21dc\" data-e-type=\"e-flexbox\" data-id=\"768a21dc\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"65a2b29c\" data-e-type=\"widget\" data-id=\"65a2b29c\" id=\"6299\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-03.webp\" width=\"1000\" height=\"807\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-03.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-03-300x242.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-03-768x620.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-03-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=\"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-4e8752a2 e-flex e-con-boxed e-con e-child\" data-id=\"4e8752a2\" 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-61ed97bf e-con e-atomic-element e-flexbox-base e-61ed97bf-dcb1a2f \" data-id=\"61ed97bf\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"61ed97bf\" data-e-type=\"e-flexbox\" data-id=\"61ed97bf\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"2d214a4\" data-e-type=\"widget\" data-id=\"2d214a4\" id=\"6300\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-04.webp\" width=\"1000\" height=\"1240\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-04.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-04-242x300.webp 242w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-04-826x1024.webp 826w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-04-768x952.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-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-2a15bbbd e-con-full e-flex e-con e-child\" data-id=\"2a15bbbd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-61ee732c e-con e-atomic-element e-flexbox-base e-61ee732c-6331e6a \" data-id=\"61ee732c\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"61ee732c\" data-e-type=\"e-flexbox\" data-id=\"61ee732c\">\n    \t\t\t<img loading=\"lazy\" decoding=\"async\" class=\"e-image-base \" data-interaction-id=\"4539fb32\" data-e-type=\"widget\" data-id=\"4539fb32\" id=\"6301\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-05.webp\" width=\"1000\" height=\"1000\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-05.webp 1000w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-05-300x300.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-05-150x150.webp 150w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-05-768x768.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/FS26-TAH-05-12x12.webp 12w\" 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-1fd438fd e-con e-atomic-element e-flexbox-base e-1fd438fd-94aa09d \" data-id=\"1fd438fd\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1fd438fd\" data-e-type=\"e-flexbox\" data-id=\"1fd438fd\">\n    <div class=\"elementor-element elementor-element-114401c7 e-con e-atomic-element e-flexbox-base e-114401c7-c29bbe9 \" data-id=\"114401c7\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"114401c7\" data-e-type=\"e-flexbox\" data-id=\"114401c7\">\n    \t\t\t<p class=\"e-63dab862-2a90e00 body-text-small e-paragraph-base\" data-interaction-id=\"63dab862\" data-e-type=\"widget\" data-id=\"63dab862\">The spirit of Polynesian voyaging is woven into the resort, from its entrance shaped like an upturned pirogue to the Polynesian Village, where island traditions \u2014 flower crowns, the rhythm of the toere, the making of monoi \u2014 are passed from one generation to the next.<\/p>\n\t\t\t\t\t<p class=\"e-3831c6dd-dcbb4b7 body-text-small e-paragraph-base\" data-interaction-id=\"3831c6dd\" data-e-type=\"widget\" data-id=\"3831c6dd\">During the festive season, Le Taha'a offers a different way to celebrate: one that leaves room for discovery, for gathering, and for time to simply unfold.<\/p>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-14aebde4 e-con e-atomic-element e-flexbox-base e-14aebde4-5f2112b \" data-id=\"14aebde4\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"14aebde4\" data-e-type=\"e-flexbox\" data-id=\"14aebde4\">\n    \t\t<div class=\"elementor-element elementor-element-611ddd91 elementor-widget elementor-widget-button\" data-id=\"611ddd91\" 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.letahaa.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=\"42e1f7b6\" class=\"e-42e1f7b6-87b0497 button-secondary underline-centered e-heading-base\" data-e-type=\"widget\" data-id=\"42e1f7b6\"><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-2f910be7 e-con e-atomic-element e-flexbox-base e-2f910be7-1e7122f \" data-id=\"2f910be7\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2f910be7\" data-e-type=\"e-flexbox\" data-id=\"2f910be7\">\n    <div class=\"elementor-element elementor-element-74fbaaf5 e-con e-atomic-element e-flexbox-base e-74fbaaf5-f1e4297 \" data-id=\"74fbaaf5\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"74fbaaf5\" data-e-type=\"e-flexbox\" data-id=\"74fbaaf5\">\n    \t\t\t\n<hr class=\"e-71f1e11e-8e4d1c7 e-divider-base\" data-interaction-id=\"71f1e11e\"  data-e-type=\"widget\" data-id=\"71f1e11e\" \/>\n\t\t\t\t<div class=\"elementor-element elementor-element-5f19408b elementor-widget__width-auto elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"5f19408b\" 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-42e8fd40-c254b3a e-divider-base\" data-interaction-id=\"42e8fd40\"  data-e-type=\"widget\" data-id=\"42e8fd40\" \/>\n\t\t\n<\/div>\n\n<\/div>\n<div class=\"elementor-element elementor-element-1e22c013 e-con e-atomic-element e-flexbox-base e-1e22c013-9424fd9 section \" data-id=\"1e22c013\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1e22c013\" id=\"collection\" data-e-type=\"e-flexbox\" data-id=\"1e22c013\">\n    <div class=\"elementor-element elementor-element-7790b519 e-flex e-con-boxed e-con e-parent\" data-id=\"7790b519\" 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-2a1c566b e-con e-atomic-element e-flexbox-base e-2a1c566b-5b5ca1a \" data-id=\"2a1c566b\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2a1c566b\" data-e-type=\"e-flexbox\" data-id=\"2a1c566b\">\n    <div class=\"elementor-element elementor-element-1db21d17 e-con e-atomic-element e-flexbox-base e-1db21d17-c8ffd80 \" data-id=\"1db21d17\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1db21d17\" data-e-type=\"e-flexbox\" data-id=\"1db21d17\">\n    \t\t\t<h3 data-interaction-id=\"f79bbb4\" class=\"e-f79bbb4-665e772 h3 e-heading-base\" data-e-type=\"widget\" data-id=\"f79bbb4\" >Experience the islands of Tahiti for the Festive Season<\/h3>\n\t\t<div class=\"elementor-element elementor-element-58de3ec7 e-con e-atomic-element e-flexbox-base e-58de3ec7-06077ac \" data-id=\"58de3ec7\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"58de3ec7\" data-e-type=\"e-flexbox\" data-id=\"58de3ec7\">\n    \t\t\t<p class=\"e-5e2147ef-7167305 body-text-small e-paragraph-base\" data-interaction-id=\"5e2147ef\" data-e-type=\"widget\" data-id=\"5e2147ef\">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-3b8aa135 elementor-widget__width-initial pagination-light carousel-centered elementor-pagination-position-inside elementor-pagination-type-bullets elementor-widget elementor-widget-n-carousel\" data-id=\"3b8aa135\" 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;TKH&quot;,&quot;_id&quot;:&quot;26fc36d&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-300ce16b e-flex e-con-boxed e-con e-child\" data-id=\"300ce16b\" 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-7c3760a9 e-con e-atomic-element e-flexbox-base e-7c3760a9-e09c114 festive-season-bg \" data-id=\"7c3760a9\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"7c3760a9\" data-e-type=\"e-flexbox\" data-id=\"7c3760a9\">\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=\"49aa9c86\"\n\t><img loading=\"lazy\" decoding=\"async\" class=\"e-image-base e-49aa9c86-a29f6c9\" data-e-type=\"widget\" data-id=\"49aa9c86\" 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-4505ae83 e-con e-atomic-element e-flexbox-base e-4505ae83-e1bfdc3 \" data-id=\"4505ae83\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"4505ae83\" data-e-type=\"e-flexbox\" data-id=\"4505ae83\">\n    <div class=\"elementor-element elementor-element-124331c1 e-con e-atomic-element e-flexbox-base e-124331c1-566cd9d \" data-id=\"124331c1\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"124331c1\" data-e-type=\"e-flexbox\" data-id=\"124331c1\">\n    \t\t\t<h3 data-interaction-id=\"3e0f4f69\" class=\"e-3e0f4f69-5f6af1d eyebrow e-heading-base\" data-e-type=\"widget\" data-id=\"3e0f4f69\" >Society Islands<\/h3>\n\t\t\t\t\t<h3 data-interaction-id=\"304d25ac\" class=\"e-304d25ac-1467f3d h4 e-heading-base\" data-e-type=\"widget\" data-id=\"304d25ac\" >Le Bora Bora<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-377d4575 e-con e-atomic-element e-flexbox-base e-377d4575-1fa246c \" data-id=\"377d4575\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"377d4575\" data-e-type=\"e-flexbox\" data-id=\"377d4575\">\n    \t\t\t<p class=\"e-4e7f2298-f59be62 body-text-small e-paragraph-base\" data-interaction-id=\"4e7f2298\" data-e-type=\"widget\" data-id=\"4e7f2298\">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-521dc14d e-con e-atomic-element e-flexbox-base e-521dc14d-05ad7bd \" data-id=\"521dc14d\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"521dc14d\" data-e-type=\"e-flexbox\" data-id=\"521dc14d\">\n    \t\t<div class=\"elementor-element elementor-element-1967e8ae elementor-widget elementor-widget-button\" data-id=\"1967e8ae\" 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-6c844214 e-flex e-con-boxed e-con e-child\" data-id=\"6c844214\" 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-74c374a3 e-con e-atomic-element e-flexbox-base e-74c374a3-1b7e734 festive-season-bg \" data-id=\"74c374a3\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"74c374a3\" data-e-type=\"e-flexbox\" data-id=\"74c374a3\">\n    \t\t\t<a href=\"https:\/\/pearlresorts.com\/fr\/festive-season-le-tikehau\/\" target=\"_blank\" class=\"e-image-link-base\" data-interaction-id=\"274d0292\"\n\t><img loading=\"lazy\" decoding=\"async\" class=\"e-image-base e-274d0292-5f87409\" data-e-type=\"widget\" data-id=\"274d0292\" id=\"3680\" src=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh.webp\" width=\"1920\" height=\"1080\" srcset=\"https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh.webp 1920w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh-300x169.webp 300w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh-1024x576.webp 1024w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh-768x432.webp 768w, https:\/\/pearlresorts.com\/wp-content\/uploads\/2026\/08\/tkh-1536x864.webp 1536w\" alt=\"\"\/>\t<\/a>\t\t<div class=\"elementor-element elementor-element-7b6b5447 e-con e-atomic-element e-flexbox-base e-7b6b5447-117a3c6 \" data-id=\"7b6b5447\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"7b6b5447\" data-e-type=\"e-flexbox\" data-id=\"7b6b5447\">\n    <div class=\"elementor-element elementor-element-1bf46726 e-con e-atomic-element e-flexbox-base e-1bf46726-62d01c5 \" data-id=\"1bf46726\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"1bf46726\" data-e-type=\"e-flexbox\" data-id=\"1bf46726\">\n    \t\t\t<h3 data-interaction-id=\"78751bef\" class=\"e-78751bef-dc7afcd eyebrow white-text e-heading-base\" data-e-type=\"widget\" data-id=\"78751bef\" >Tuamotus<\/h3>\n\t\t\t\t\t<h3 data-interaction-id=\"44757ad0\" class=\"e-44757ad0-e2b830b h4 white-text e-heading-base\" data-e-type=\"widget\" data-id=\"44757ad0\" >Le Tikehau<\/h3>\n\t\t\n<\/div>\n<div class=\"elementor-element elementor-element-2331b9df e-con e-atomic-element e-flexbox-base e-2331b9df-cc3411d \" data-id=\"2331b9df\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"2331b9df\" data-e-type=\"e-flexbox\" data-id=\"2331b9df\">\n    \t\t\t<p class=\"e-26cf4c52-468ac2c body-text-small white-text e-paragraph-base\" data-interaction-id=\"26cf4c52\" data-e-type=\"widget\" data-id=\"26cf4c52\">Beneath Tikehau\u2019s stars, a table is set for the season \u2014 a quiet celebration shaped by the stillness of the Tuamotus and the flavours of the islands.<\/p>\n\t\t<div class=\"elementor-element elementor-element-59d19e9f e-con e-atomic-element e-flexbox-base e-59d19e9f-ea4ef2d \" data-id=\"59d19e9f\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"59d19e9f\" data-e-type=\"e-flexbox\" data-id=\"59d19e9f\">\n    \t\t<div class=\"elementor-element elementor-element-38c522ea elementor-widget elementor-widget-button\" data-id=\"38c522ea\" 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-tikehau\/\">\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-5b1cc9fe e-con e-atomic-element e-flexbox-base e-5b1cc9fe-f414320 section festive-season-bg \" data-id=\"5b1cc9fe\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"5b1cc9fe\" id=\"conditions\" data-e-type=\"e-flexbox\" data-id=\"5b1cc9fe\">\n    <div class=\"elementor-element elementor-element-c4b7a55 e-con e-atomic-element e-flexbox-base e-c4b7a55-b241cac \" data-id=\"c4b7a55\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"c4b7a55\" id=\"conditions\" data-e-type=\"e-flexbox\" data-id=\"c4b7a55\">\n    \t\t\t<h3 data-interaction-id=\"61ed91d8\" class=\"e-61ed91d8-99ad8e0 h3 e-heading-base\" data-e-type=\"widget\" data-id=\"61ed91d8\" >Frequently asked questions<\/h3>\n\t\t\t\t<div class=\"elementor-element elementor-element-70738d56 elementor-widget__width-initial elementor-widget elementor-widget-n-accordion\" data-id=\"70738d56\" 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-1880\" 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-1880\" >\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-1880\" class=\"elementor-element elementor-element-357c08b1 e-con-full e-flex e-con e-child\" data-id=\"357c08b1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-15bf91e6-9e62616 body-text-small e-paragraph-base\" data-interaction-id=\"15bf91e6\" data-e-type=\"widget\" data-id=\"15bf91e6\">(Excluding Salon du Tourisme rates and conditions)<\/p>\n\t\t\t\t\t<p class=\"e-24038445-98c98b5 body-text-small e-paragraph-base\" data-interaction-id=\"24038445\" data-e-type=\"widget\" data-id=\"24038445\">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-fe9fe05-513ed0c body-text-small e-paragraph-base\" data-interaction-id=\"fe9fe05\" data-e-type=\"widget\" data-id=\"fe9fe05\">Christmas Eve Dinner on December 24, 2026, at the Hawaiki Nui Restaurant: <br>- Adult (13 years and above): 29,500 XPF including tax<br>- Child (3-12 years): 14,750 XPF including tax<\/p>\n\t\t\t\t\t<p class=\"e-7d968cfd-9daeb3c body-text-small e-paragraph-base\" data-interaction-id=\"7d968cfd\" data-e-type=\"widget\" data-id=\"7d968cfd\">Christmas Eve dinner includes: Welcome cocktail with hotel management, buffet dinner with Polynesian dance show, Christmas choral and fire dance.<\/p>\n\t\t\t\t\t<p class=\"e-4531bc47-0884038 body-text-small e-paragraph-base\" data-interaction-id=\"4531bc47\" data-e-type=\"widget\" data-id=\"4531bc47\">New Years Eve Dinner on December 31, 2026, at the Hawaiki Nui Restaurant: <br>- Adult (13 years and above): 46,000 XPF including tax<br>- Child (3-12 years): 23,000 XPF including tax<\/p>\n\t\t\t\t\t<p class=\"e-3f9fc79a-75d415a body-text-small e-paragraph-base\" data-interaction-id=\"3f9fc79a\" data-e-type=\"widget\" data-id=\"3f9fc79a\">New Year\u2019s Eve dinner includes: Welcome cocktail with hotel management, buffet dinner with Polynesian dance show and fire dance, \u00bd bottle of champagne per adult, fireworks, champagne served at midnight and DJ party.<\/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-1881\" 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-1881\" >\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-1881\" class=\"elementor-element elementor-element-55b5bc5e e-con-full e-flex e-con e-child\" data-id=\"55b5bc5e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-4f4459d4-3f7e126 body-text-small e-paragraph-base\" data-interaction-id=\"4f4459d4\" data-e-type=\"widget\" data-id=\"4f4459d4\">The hotel is located on a private islet, approximately 35 minutes by boat from the airport of Raiatea, which is the closest airport to Taha'a. From Tahiti and Bora Bora, there are daily flights to the island of Raiatea with the domestic carriers Air Tahiti and Air Moana. Airport code : RFP.<\/p>\n\t\t\t\t\t<p class=\"e-6d502618-7c5980a body-text-small e-paragraph-base\" data-interaction-id=\"6d502618\" data-e-type=\"widget\" data-id=\"6d502618\">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).<\/p>\n\t\t\t\t\t<p class=\"e-7f251583-62cb3e4 body-text-small e-paragraph-base\" data-interaction-id=\"7f251583\" data-e-type=\"widget\" data-id=\"7f251583\">Boat transfers are charged and payable on site: <br>- Adults: 7,500 XPF per adult per way, 5% tax included <br>- Children (3-12 years): 3,800 XPF per child per way, 5% tax included <br>- Infants (0-2 years): Free of charge<\/p>\n\t\t\t\t\t<p class=\"e-30dd753e-d9381b9 body-text-small e-paragraph-base\" data-interaction-id=\"30dd753e\" data-e-type=\"widget\" data-id=\"30dd753e\">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-1882\" 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-1882\" >\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-1882\" class=\"elementor-element elementor-element-341598f6 e-con-full e-flex e-con e-child\" data-id=\"341598f6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<p class=\"e-4b187367-9ef2c04 body-text-small e-paragraph-base\" data-interaction-id=\"4b187367\" data-e-type=\"widget\" data-id=\"4b187367\">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-6011e2ca-f43f99a body-text-small e-paragraph-base\" data-interaction-id=\"6011e2ca\" data-e-type=\"widget\" data-id=\"6011e2ca\"><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-63017ab-7a4a87c body-text-small e-paragraph-base\" data-interaction-id=\"63017ab\" data-e-type=\"widget\" data-id=\"63017ab\">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-1883\" 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-1883\" >\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-1883\" class=\"elementor-element elementor-element-136e70f3 e-flex e-con-boxed e-con e-child\" data-id=\"136e70f3\" 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-463ad76f-c0c6438 body-text-small e-paragraph-base\" data-interaction-id=\"463ad76f\" data-e-type=\"widget\" data-id=\"463ad76f\"><u>Guarantee<\/u><\/p>\n\t\t\t\t\t<p class=\"e-405ce82d-68a7deb body-text-small e-paragraph-base\" data-interaction-id=\"405ce82d\" data-e-type=\"widget\" data-id=\"405ce82d\">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-38a4e71b-3da7a91 body-text-small e-paragraph-base\" data-interaction-id=\"38a4e71b\" data-e-type=\"widget\" data-id=\"38a4e71b\"><u>Cancellation \/ Modification Policy<\/u><\/p>\n\t\t\t\t\t<p class=\"e-7347d4d8-9bfc0f4 body-text-small e-paragraph-base\" data-interaction-id=\"7347d4d8\" data-e-type=\"widget\" data-id=\"7347d4d8\">- 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-1f585984-2ab1b85 body-text-small e-paragraph-base\" data-interaction-id=\"1f585984\" data-e-type=\"widget\" data-id=\"1f585984\">The same conditions apply to shortened stays.<\/p>\n\t\t\t\t\t<p class=\"e-75a0827c-4086d86 body-text-small e-paragraph-base\" data-interaction-id=\"75a0827c\" data-e-type=\"widget\" data-id=\"75a0827c\"><u>No shows<\/u><\/p>\n\t\t\t\t\t<p class=\"e-27ceeb7c-6119966 body-text-small e-paragraph-base\" data-interaction-id=\"27ceeb7c\" data-e-type=\"widget\" data-id=\"27ceeb7c\">- 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-315349ac e-con e-atomic-element e-flexbox-base e-315349ac-123e966 main-header festive-season-bg \" data-id=\"315349ac\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"315349ac\" data-e-type=\"e-flexbox\" data-id=\"315349ac\">\n    <div class=\"elementor-element elementor-element-78113b89 e-con e-atomic-element e-flexbox-base e-78113b89-bd0a9ec \" data-id=\"78113b89\" data-element_type=\"e-flexbox\" data-e-type=\"e-flexbox\" data-interaction-id=\"78113b89\" data-e-type=\"e-flexbox\" data-id=\"78113b89\">\n    \t\t<div class=\"elementor-element elementor-element-62e43746 elementor-tablet-align-justify elementor-widget-tablet__width-inherit elementor-widget elementor-widget-button\" data-id=\"62e43746\" 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 Taha&#8217;a 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 Taha&#8217;a At Le Taha&#8217;a, time seems to move differently. Between the lagoon and the lush vegetation of its private motu, life follows the [&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-6413","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\/6413","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=6413"}],"version-history":[{"count":96,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages\/6413\/revisions"}],"predecessor-version":[{"id":7943,"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/pages\/6413\/revisions\/7943"}],"wp:attachment":[{"href":"https:\/\/pearlresorts.com\/fr\/wp-json\/wp\/v2\/media?parent=6413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}