{"id":9,"date":"2026-05-12T08:18:21","date_gmt":"2026-05-12T08:18:21","guid":{"rendered":"https:\/\/jernobia.kinsta.cloud\/?page_id=9"},"modified":"2026-07-12T15:45:41","modified_gmt":"2026-07-12T15:45:41","slug":"rsvp-landing","status":"publish","type":"page","link":"https:\/\/jernobia.com\/","title":{"rendered":"RSVP Landing"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"9\" class=\"elementor elementor-9\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-efa5dd7 hero no-sticker-trail e-con-full e-flex wcf-starter-animations-none e-con e-parent\" data-id=\"efa5dd7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:16,&quot;url&quot;:&quot;https:\\\/\\\/jernobia.kinsta.cloud\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/herobannerframe-1.jpg&quot;}],&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_transition_duration&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-21e65e3 elementor-widget elementor-widget-html\" data-id=\"21e65e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\n\/* ============================================\r\n   Wedding Date Cards + Range Fill\r\n   ============================================ *\/\r\n(function () {\r\n  function initDateCards() {\r\n    const labels = document.querySelectorAll('.wedding-date-cards label');\r\n    if (labels.length === 0) return false;\r\n\r\n    let didWork = false;\r\n\r\n    labels.forEach(label => {\r\n      if (label.dataset.cardInit === '1') return;\r\n\r\n      \/\/ Find the text node that contains the \"|\" separator\r\n      let textNode = null;\r\n      for (const node of label.childNodes) {\r\n        if (node.nodeType === Node.TEXT_NODE && node.textContent.includes('|')) {\r\n          textNode = node;\r\n          break;\r\n        }\r\n      }\r\n\r\n      \/\/ Fallback: check inside spans too\r\n      if (!textNode) {\r\n        const spans = label.querySelectorAll('span');\r\n        for (const span of spans) {\r\n          if (span.textContent.includes('|') && !span.querySelector('input')) {\r\n            const parts = span.textContent.split('|');\r\n            span.innerHTML =\r\n              `<span class=\"card-day\">${parts[0].trim()}<\/span>` +\r\n              `<span class=\"card-num\">${parts[1].trim()}<\/span>`;\r\n            label.dataset.cardInit = '1';\r\n            didWork = true;\r\n            return;\r\n          }\r\n        }\r\n      }\r\n\r\n      if (textNode) {\r\n        const [day, num] = textNode.textContent.split('|');\r\n        const wrap = document.createElement('span');\r\n        wrap.className = 'card-text';\r\n        wrap.innerHTML =\r\n          `<span class=\"card-day\">${day.trim()}<\/span>` +\r\n          `<span class=\"card-num\">${num.trim()}<\/span>`;\r\n        textNode.parentNode.replaceChild(wrap, textNode);\r\n        label.dataset.cardInit = '1';\r\n        didWork = true;\r\n      }\r\n    });\r\n\r\n    return didWork;\r\n  }\r\n\r\n  function initRangeFill() {\r\n    const containers = document.querySelectorAll('.wedding-date-cards');\r\n\r\n    containers.forEach(container => {\r\n      if (container.dataset.rangeInit === '1') return;\r\n      container.dataset.rangeInit = '1';\r\n\r\n      let isUpdating = false;\r\n\r\n      \/\/ Helper: get all checkboxes and current checked indexes\r\n      const getState = () => {\r\n        const checkboxes = Array.from(\r\n          container.querySelectorAll('input[type=\"checkbox\"]')\r\n        );\r\n        const checkedIndexes = checkboxes\r\n          .map((cb, i) => (cb.checked ? i : -1))\r\n          .filter(i => i !== -1);\r\n        return { checkboxes, checkedIndexes };\r\n      };\r\n\r\n      \/\/ Block unchecking middle dates (capture phase, on both label and input)\r\n      const blockMiddleUncheck = (e) => {\r\n        \/\/ Find the associated checkbox\r\n        let cb = null;\r\n        if (e.target.tagName === 'INPUT' && e.target.type === 'checkbox') {\r\n          cb = e.target;\r\n        } else {\r\n          const label = e.target.closest('label');\r\n          if (label) cb = label.querySelector('input[type=\"checkbox\"]');\r\n        }\r\n        if (!cb || !container.contains(cb)) return;\r\n\r\n        \/\/ Only care about clicks that would UNCHECK (currently checked)\r\n        if (!cb.checked) return;\r\n\r\n        const { checkboxes, checkedIndexes } = getState();\r\n        if (checkedIndexes.length < 3) return; \/\/ nothing to lock yet\r\n\r\n        const idx = checkboxes.indexOf(cb);\r\n        const first = checkedIndexes[0];\r\n        const last = checkedIndexes[checkedIndexes.length - 1];\r\n\r\n        \/\/ If this checkbox is strictly between first and last checked, block it\r\n        if (idx > first && idx < last) {\r\n          e.preventDefault();\r\n          e.stopPropagation();\r\n          e.stopImmediatePropagation();\r\n        }\r\n      };\r\n\r\n      container.addEventListener('click', blockMiddleUncheck, true);\r\n\r\n      \/\/ Auto-fill the gap when a new date is checked\r\n      container.addEventListener('change', (e) => {\r\n        const target = e.target;\r\n        if (!target || target.type !== 'checkbox') return;\r\n        if (isUpdating) return;\r\n        if (!target.checked) return;\r\n\r\n        const { checkboxes, checkedIndexes } = getState();\r\n        if (checkedIndexes.length < 2) return;\r\n\r\n        const first = checkedIndexes[0];\r\n        const last = checkedIndexes[checkedIndexes.length - 1];\r\n\r\n        isUpdating = true;\r\n        for (let i = first + 1; i < last; i++) {\r\n          if (!checkboxes[i].checked) {\r\n            checkboxes[i].checked = true;\r\n            checkboxes[i].dispatchEvent(new Event('change', { bubbles: true }));\r\n            checkboxes[i].dispatchEvent(new Event('input', { bubbles: true }));\r\n          }\r\n        }\r\n        isUpdating = false;\r\n      });\r\n    });\r\n  }\r\n\r\n  function runInit() {\r\n    const cardsDone = initDateCards();\r\n    initRangeFill();\r\n    return cardsDone;\r\n  }\r\n\r\n  function poll(attempts = 0) {\r\n    if (runInit()) return;\r\n    if (attempts < 20) setTimeout(() => poll(attempts + 1), 250);\r\n  }\r\n\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', () => poll());\r\n  } else {\r\n    poll();\r\n  }\r\n\r\n  const observer = new MutationObserver(() => runInit());\r\n  observer.observe(document.body, { childList: true, subtree: true });\r\n})();\r\n\r\n\r\n\/* ============================================\r\n   Guest Counter Steppers\r\n   ============================================ *\/\r\n(function () {\r\n  \/\/ Function that actually does the work\r\n  function initGuestCounters() {\r\n    const counters = document.querySelectorAll(\r\n      '.guest-counter input[type=\"number\"], ' +\r\n      '.ff-el-group.guest-counter input[type=\"number\"]'\r\n    );\r\n\r\n    if (counters.length === 0) return false; \/\/ not ready yet\r\n\r\n    counters.forEach(input => {\r\n      \/\/ Skip if already wrapped\r\n      if (input.parentElement &&\r\n          input.parentElement.classList.contains('stepper-wrap')) return;\r\n      if (input.dataset.stepperInit === '1') return;\r\n      input.dataset.stepperInit = '1';\r\n\r\n      \/\/ Create wrapper\r\n      const wrapper = document.createElement('div');\r\n      wrapper.className = 'stepper-wrap';\r\n\r\n      \/\/ Create minus button\r\n      const minusBtn = document.createElement('button');\r\n      minusBtn.type = 'button';\r\n      minusBtn.className = 'stepper-btn stepper-minus';\r\n      minusBtn.innerHTML = '\u2212';\r\n      minusBtn.setAttribute('aria-label', 'Decrease');\r\n\r\n      \/\/ Create plus button\r\n      const plusBtn = document.createElement('button');\r\n      plusBtn.type = 'button';\r\n      plusBtn.className = 'stepper-btn stepper-plus';\r\n      plusBtn.innerHTML = '+';\r\n      plusBtn.setAttribute('aria-label', 'Increase');\r\n\r\n      \/\/ Insert wrapper and move input inside\r\n      input.parentNode.insertBefore(wrapper, input);\r\n      wrapper.appendChild(minusBtn);\r\n      wrapper.appendChild(input);\r\n      wrapper.appendChild(plusBtn);\r\n\r\n      const min = parseInt(input.getAttribute('min')) || 0;\r\n      const max = parseInt(input.getAttribute('max')) || 999;\r\n\r\n      minusBtn.addEventListener('click', function (e) {\r\n        e.preventDefault();\r\n        let val = parseInt(input.value) || 0;\r\n        if (val > min) {\r\n          input.value = val - 1;\r\n          input.dispatchEvent(new Event('change', { bubbles: true }));\r\n          input.dispatchEvent(new Event('input', { bubbles: true }));\r\n        }\r\n      });\r\n\r\n      plusBtn.addEventListener('click', function (e) {\r\n        e.preventDefault();\r\n        let val = parseInt(input.value) || 0;\r\n        if (val < max) {\r\n          input.value = val + 1;\r\n          input.dispatchEvent(new Event('change', { bubbles: true }));\r\n          input.dispatchEvent(new Event('input', { bubbles: true }));\r\n        }\r\n      });\r\n    });\r\n\r\n    return true;\r\n  }\r\n\r\n  \/\/ Try multiple times with increasing delays (handles slow form loads)\r\n  function pollForForm(attempts = 0) {\r\n    if (initGuestCounters()) return; \/\/ success\r\n    if (attempts < 20) {\r\n      setTimeout(() => pollForForm(attempts + 1), 250);\r\n    }\r\n  }\r\n\r\n  \/\/ Start polling\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', () => pollForForm());\r\n  } else {\r\n    pollForForm();\r\n  }\r\n\r\n  \/\/ Also watch for dynamically inserted forms (conditional logic, AJAX)\r\n  const observer = new MutationObserver(() => initGuestCounters());\r\n  observer.observe(document.body, { childList: true, subtree: true });\r\n})();\r\n\r\n\r\n\/* ============================================\r\n   Disable Scroll-Wheel on Number Inputs\r\n   ============================================ *\/\r\ndocument.querySelectorAll('.fluentform input[type=\"number\"]').forEach(input => {\r\n  input.addEventListener('wheel', e => e.target.blur());\r\n});\r\n\r\n\r\n\/* ============================================\r\n   Leaf Brush Mouse Interaction\r\n   ============================================ *\/\r\n(function () {\r\n  const DESKTOP_QUERY = window.matchMedia('(min-width: 767px)');\r\n\r\n  function initLeafBrush() {\r\n    \/\/ Bail out on mobile \/ narrow screens\r\n    if (!DESKTOP_QUERY.matches) return;\r\n\r\n    \/\/ Single-element selectors\r\n    const single = document.querySelector('.elementor-element-d595434');\r\n    if (single && !single.dataset.brushInit) bindLeafBrush(single);\r\n\r\n    \/\/ Multi-element selectors (classes that may appear multiple times)\r\n    document.querySelectorAll('.mouse-interact').forEach(el => {\r\n      if (!el.dataset.brushInit) bindLeafBrush(el);\r\n    });\r\n  }\r\n\r\n  function bindLeafBrush(el) {\r\n    el.dataset.brushInit = '1'; \/\/ prevent double-init\r\n\r\n    let lastX = 0, lastY = 0, lastT = 0;\r\n    let curTx = 0, curTy = 0, curRot = 0, curSc = 0;\r\n    let tgtTx = 0, tgtTy = 0, tgtRot = 0, tgtSc = 0;\r\n    let rafId = null;\r\n\r\n    const clamp = (v, min, max) => Math.max(min, Math.min(max, v));\r\n\r\n    function startLoop() {\r\n      if (rafId === null) rafId = requestAnimationFrame(tick);\r\n    }\r\n\r\n    el.addEventListener('mousemove', (e) => {\r\n      const rect = el.getBoundingClientRect();\r\n      const x = e.clientX - rect.left;\r\n      const y = e.clientY - rect.top;\r\n      const t = performance.now();\r\n\r\n      if (lastT) {\r\n        const dt = Math.max(t - lastT, 1);\r\n        const vx = (x - lastX) \/ dt;\r\n        const vy = (y - lastY) \/ dt;\r\n        tgtTx = clamp(vx * 1.4, -2, 2);\r\n        tgtTy = clamp(vy * 1.4, -2, 2);\r\n        tgtRot = clamp(vx * 2.2, -3, 3);\r\n        tgtSc = Math.min(0.05, (Math.abs(vx) + Math.abs(vy)) * 0.02);\r\n      }\r\n\r\n      lastX = x;\r\n      lastY = y;\r\n      lastT = t;\r\n\r\n      startLoop(); \/\/ wake the animation only when there's input\r\n    });\r\n\r\n    el.addEventListener('mouseleave', () => {\r\n      tgtTx = tgtTy = tgtRot = tgtSc = 0;\r\n      lastT = 0;\r\n    });\r\n\r\n    function tick() {\r\n      tgtTx *= 0.88;\r\n      tgtTy *= 0.88;\r\n      tgtRot *= 0.88;\r\n      tgtSc *= 0.88;\r\n\r\n      const ease = 0.02;\r\n      curTx += (tgtTx - curTx) * ease;\r\n      curTy += (tgtTy - curTy) * ease;\r\n      curRot += (tgtRot - curRot) * ease;\r\n      curSc += (tgtSc - curSc) * ease;\r\n\r\n      el.style.setProperty('--brush-tx', curTx.toFixed(3) + '%');\r\n      el.style.setProperty('--brush-ty', curTy.toFixed(3) + '%');\r\n      el.style.setProperty('--brush-rot', curRot.toFixed(3) + 'deg');\r\n      el.style.setProperty('--brush-scale', curSc.toFixed(4));\r\n\r\n      \/\/ Stop the loop once everything has settled back to rest\r\n      const atRest =\r\n        Math.abs(curTx) < 0.001 && Math.abs(curTy) < 0.001 &&\r\n        Math.abs(curRot) < 0.001 && Math.abs(curSc) < 0.0001 &&\r\n        Math.abs(tgtTx) < 0.001 && Math.abs(tgtTy) < 0.001 &&\r\n        Math.abs(tgtRot) < 0.001 && Math.abs(tgtSc) < 0.0001;\r\n\r\n      if (atRest) {\r\n        rafId = null; \/\/ loop sleeps until next mousemove\r\n        return;\r\n      }\r\n\r\n      rafId = requestAnimationFrame(tick);\r\n    }\r\n  }\r\n\r\n  \/\/ Run on DOM ready and again on full load (Elementor lazy-renders)\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', initLeafBrush);\r\n  } else {\r\n    initLeafBrush();\r\n  }\r\n  window.addEventListener('load', initLeafBrush);\r\n\r\n  \/\/ If the viewport crosses the breakpoint into desktop, init then\r\n  DESKTOP_QUERY.addEventListener('change', (e) => {\r\n    if (e.matches) initLeafBrush();\r\n  });\r\n})();\r\n\r\n\r\n\/* ============================================\r\n   Custom Success Message Replacement\r\n   ============================================ *\/\r\n(function () {\r\n  function customizeSuccessMessage() {\r\n    document.querySelectorAll('.ff-message-success').forEach(el => {\r\n      if (el.dataset.customized === '1') return;\r\n      el.dataset.customized = '1';\r\n      el.innerHTML = `\r\n        <h2 class=\"custom-success-title\">Thank You!<\/h2>\r\n        <p class=\"custom-success-text\">Your RSVP has been received.<\/p>\r\n      `;\r\n    });\r\n  }\r\n\r\n  \/\/ Watch for the success message being injected after submit\r\n  const successObserver = new MutationObserver(() => customizeSuccessMessage());\r\n  successObserver.observe(document.body, { childList: true, subtree: true });\r\n\r\n  \/\/ Run once on load in case it's already there (e.g., resubmit redirect)\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', customizeSuccessMessage);\r\n  } else {\r\n    customizeSuccessMessage();\r\n  }\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7b792c5 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex wcf-starter-animations-none e-con e-child\" data-id=\"7b792c5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[],&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_transition_duration&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fea68de elementor-absolute elementor-widget__width-inherit artetaherodesktop wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"fea68de\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:2.75,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"2560\" height=\"1334\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/herobanner-highres-2-without-foreground-cropped-scaled.jpg\" class=\"attachment-full size-full wp-image-3731\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/herobanner-highres-2-without-foreground-cropped-scaled.jpg 2560w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/herobanner-highres-2-without-foreground-cropped-300x156.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/herobanner-highres-2-without-foreground-cropped-1024x533.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/herobanner-highres-2-without-foreground-cropped-768x400.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/herobanner-highres-2-without-foreground-cropped-1536x800.jpg 1536w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/herobanner-highres-2-without-foreground-cropped-2048x1067.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-32dd527 reveal-words wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"32dd527\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">We're getting married!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a35c6c reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"0a35c6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Zenobia &amp; Jeremy<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e45b052 elementor-align-center reveal elementor-widget elementor-widget-button\" data-id=\"e45b052\" 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=\"#rsvp\">\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\">Register 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\t\t<div class=\"elementor-element elementor-element-eba0e4e elementor-widget__width-initial elementor-absolute e-transform wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"eba0e4e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_mouseTrack_effect&quot;:&quot;yes&quot;,&quot;motion_fx_mouseTrack_direction&quot;:&quot;negative&quot;,&quot;motion_fx_mouseTrack_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.6,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1920\" height=\"693\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers.png\" class=\"attachment-full size-full wp-image-3027\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers.png 1920w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers-300x108.png 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers-1024x370.png 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers-768x277.png 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers-1536x554.png 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e650bcc e-con-full elementor-hidden-desktop e-flex wcf-starter-animations-none e-con e-child\" data-id=\"e650bcc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[],&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_duration&quot;:5000,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_transition_duration&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ec61a4 elementor-absolute e-transform artetaheromobile wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"2ec61a4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.3,&quot;sizes&quot;:[]},&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1707\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/20260309-29_R2-scaled.jpg\" class=\"attachment-full size-full wp-image-812\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/20260309-29_R2-scaled.jpg 1707w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/20260309-29_R2-200x300.jpg 200w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/20260309-29_R2-683x1024.jpg 683w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/20260309-29_R2-768x1152.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/20260309-29_R2-1024x1536.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/20260309-29_R2-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-82c21de reveal-words wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"82c21de\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">We're getting married!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-10320b6 reveal elementor-widget-mobile__width-initial wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"10320b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Zenobia &amp;<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f2c9fce reveal elementor-widget-mobile__width-initial wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"f2c9fce\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Jeremy<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-60b3185 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"60b3185\" 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=\"#rsvp\">\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\">Register 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\t\t<div class=\"elementor-element elementor-element-bb28102 elementor-widget__width-initial elementor-absolute e-transform wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"bb28102\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:3,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1920\" height=\"693\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers.png\" class=\"attachment-full size-full wp-image-3027\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers.png 1920w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers-300x108.png 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers-1024x370.png 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers-768x277.png 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/herobannerflowers-1536x554.png 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-29b0ede e-con-full e-flex wcf-starter-animations-none e-con e-parent\" data-id=\"29b0ede\" data-element_type=\"container\" data-e-type=\"container\" id=\"details\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-dc7d78c e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"dc7d78c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-98ef7f6 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"98ef7f6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;,&quot;motion_fx_tilt_effect&quot;:&quot;yes&quot;,&quot;motion_fx_tilt_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.5,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-e732b81 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"e732b81\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3199671 wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"3199671\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">BOARDING PASS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c3f2da4 elementor-absolute wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"c3f2da4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless.jpg\" class=\"attachment-large size-large wp-image-3967\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless.jpg 800w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless-300x300.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless-150x150.jpg 150w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bc70ba0 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"bc70ba0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-beca5a3 elementor-widget__width-initial elementor-absolute wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"beca5a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"500\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketstamp.png\" class=\"attachment-large size-large wp-image-2895\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketstamp.png 500w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketstamp-300x300.png 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketstamp-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5330289 e-transform reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"5330289\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-1,&quot;sizes&quot;:[]},&quot;motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Save the Date<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-12c5baf reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"12c5baf\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Zenobia &amp; Jeremy<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d045d54 wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"d045d54\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Destination<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3679a58 reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"3679a58\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-tw-speed=\"30\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Como Point Yamu <\/br>\n225 Moo 7, Paklok, Thalang, Phuket, Thailand<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-788a2bb e-con-full e-grid wcf-starter-animations-none e-con e-child\" data-id=\"788a2bb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4156891 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"4156891\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13ccfc6 wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"13ccfc6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Date<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d9a5ebc reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"d9a5ebc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">12.12.2026<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1287e85 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"1287e85\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1dcf219 wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"1dcf219\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Time<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2288c5e reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"2288c5e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">16:00<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-21278a7 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"21278a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"114\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/barcode-1.png\" class=\"attachment-large size-large wp-image-4828\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/barcode-1.png 500w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/barcode-1-300x68.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-11288f7 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"11288f7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-73dc6cf e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"73dc6cf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-403ccb7 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"403ccb7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4459986 reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"4459986\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">12th Dec 2026<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d6be125 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"d6be125\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"277\" height=\"272\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketphuketmap.png\" class=\"attachment-large size-large wp-image-2541\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c11dd99 reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"c11dd99\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Kindly register by<\/br>\n15 Aug 2026<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-19b821e wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"19b821e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"28\" height=\"28\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticket-heart.png\" class=\"attachment-large size-large wp-image-2542\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8af00fe animated-slow elementor-widget elementor-widget-html\" data-id=\"8af00fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\r\n.bg-video {\r\n  -webkit-mask-image: radial-gradient(ellipse 70% 90% at center, black 55%, transparent 100%) !important;\r\n  mask-image: radial-gradient(ellipse 45% 70% at center, black 68%, transparent 100%) !important;\r\n}\r\n.bg-video-wrap {\r\n  position: fixed;\r\n  top: 63%;\r\n  left: 60%;\r\n  height:75%;\r\n  width: 55%;\r\n  transform: translate(-50%, -50%);\r\n  z-index: -1;\r\n  pointer-events: none;\r\n  will-change: transform;\r\n}\r\n<\/style>\r\n\r\n<div class=\"bg-video-wrap\">\r\n  <video class=\"bg-video\" autoplay loop muted playsinline\r\n         style=\"width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity 0.3s ease-in;\"\r\n         onloadeddata=\"this.style.opacity=1\"><\/video>\r\n<\/div>\r\n\r\n<script>\r\n(function () {\r\n  const wraps = document.querySelectorAll('.bg-video-wrap');\r\n  if (!wraps.length) return;\r\n\r\n  const desktopSrc = 'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/0528.mp4';\r\n  if (window.matchMedia('(min-width: 767px)').matches) {\r\n    wraps.forEach(wrap => {\r\n      const video = wrap.querySelector('.bg-video');\r\n      video.innerHTML = '<source src=\"' + desktopSrc + '\" type=\"video\/mp4\">';\r\n      video.load();\r\n    });\r\n  }\r\n\r\n  const MAX_SHIFT = -10;\r\n  const FALLOFF = 200;\r\n  const DAMPING = 0.12;\r\n  const EPSILON = 0.05;\r\n\r\n  const items = Array.from(wraps).map(el => ({\r\n    el,\r\n    inner: el.querySelector('.bg-video'),\r\n    cx: 0, cy: 0,\r\n    targetX: 0, targetY: 0,\r\n    currentX: 0, currentY: 0\r\n  }));\r\n\r\n  function measure() {\r\n    items.forEach(item => {\r\n      const r = item.el.getBoundingClientRect();\r\n      item.cx = r.left + r.width \/ 2;\r\n      item.cy = r.top + r.height \/ 2;\r\n    });\r\n  }\r\n  measure();\r\n  window.addEventListener('resize', measure);\r\n\r\n  \/\/ --- FIX: write the resting transform immediately so it renders correctly\r\n  \/\/     before the user ever moves the mouse ---\r\n  items.forEach(item => {\r\n    item.inner.style.transform = 'translate(0px, 0px)';\r\n  });\r\n\r\n  const reduce = window.matchMedia('(prefers-reduced-motion: reduce)').matches;\r\n  if (reduce) return; \/\/ resting transform is set; just skip the interaction\r\n\r\n  let rafId = null;\r\n\r\n  document.addEventListener('mousemove', (e) => {\r\n    items.forEach(item => {\r\n      const dx = e.clientX - item.cx;\r\n      const dy = e.clientY - item.cy;\r\n      const dist = Math.hypot(dx, dy);\r\n      if (dist > 0) {\r\n        const strength = Math.min(dist \/ FALLOFF, 1);\r\n        item.targetX = (dx \/ dist) * MAX_SHIFT * strength;\r\n        item.targetY = (dy \/ dist) * MAX_SHIFT * strength;\r\n      } else {\r\n        item.targetX = item.targetY = 0;\r\n      }\r\n    });\r\n    start();\r\n  });\r\n\r\n  function start() {\r\n    if (rafId === null) rafId = requestAnimationFrame(animate);\r\n  }\r\n\r\n  function animate() {\r\n    let active = false;\r\n    items.forEach(item => {\r\n      item.currentX += (item.targetX - item.currentX) * DAMPING;\r\n      item.currentY += (item.targetY - item.currentY) * DAMPING;\r\n      item.inner.style.transform =\r\n        `translate(${item.currentX.toFixed(2)}px, ${item.currentY.toFixed(2)}px)`;\r\n      if (Math.abs(item.targetX - item.currentX) > EPSILON ||\r\n          Math.abs(item.targetY - item.currentY) > EPSILON) {\r\n        active = true;\r\n      }\r\n    });\r\n    rafId = active ? requestAnimationFrame(animate) : null;\r\n  }\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4aaa438 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"4aaa438\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6c5a38b e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"6c5a38b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6752819 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"6752819\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2befc55 wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"2befc55\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">BOARDING PASS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7165475 elementor-absolute wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"7165475\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless.jpg\" class=\"attachment-large size-large wp-image-3967\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless.jpg 800w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless-300x300.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless-150x150.jpg 150w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flowerseamless-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5f65214 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"5f65214\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e79f3c8 elementor-widget__width-initial elementor-absolute reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"e79f3c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"500\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketstamp.png\" class=\"attachment-large size-large wp-image-2895\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketstamp.png 500w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketstamp-300x300.png 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketstamp-150x150.png 150w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1601572 e-transform reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"1601572\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-1,&quot;sizes&quot;:[]},&quot;motion_fx_motion_fx_mouse&quot;:&quot;yes&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Save the Date<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-86d228a reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"86d228a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Zenobia &amp; Jeremy<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-573281d wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"573281d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Destination<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6f40f94 reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"6f40f94\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-tw-speed=\"15\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Como Point Yamu <\/br>\n225 Moo 7, Paklok, Thalang, <\/br>\nPhuket, Thailand<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cf7659b e-con-full e-grid wcf-starter-animations-none e-con e-child\" data-id=\"cf7659b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0bd83ac e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"0bd83ac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b19c611 wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"b19c611\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Date<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-07ab414 reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"07ab414\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">12.12.2026<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4139b3e e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"4139b3e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9a2e133 wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"9a2e133\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Time<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-102af67 reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"102af67\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">16:00<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bfd4476 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"bfd4476\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"114\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/barcode-1.png\" class=\"attachment-large size-large wp-image-4828\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/barcode-1.png 500w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/barcode-1-300x68.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-03c53a5 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"03c53a5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-49ef29f e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"49ef29f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-514e941 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"514e941\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fab56f5 reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"fab56f5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">12th Dec 2026<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-581a855 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"581a855\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"277\" height=\"272\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticketphuketmap.png\" class=\"attachment-large size-large wp-image-2541\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eb2b5f2 reveal-typewriter wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"eb2b5f2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-tw-speed=\"30\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Kindly register by <\/br>\n15 Aug 2026<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-445f4b5 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"445f4b5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"28\" height=\"28\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/ticket-heart.png\" class=\"attachment-large size-large wp-image-2542\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-15f170f elementor-absolute e-transform wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"15f170f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.25,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.5,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"566\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/comowatercolor-mobile.jpg\" class=\"attachment-full size-full wp-image-3618\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/comowatercolor-mobile.jpg 1000w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/comowatercolor-mobile-300x170.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/comowatercolor-mobile-768x435.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d17b11c e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"d17b11c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b92ae7 elementor-widget__width-initial elementor-hidden-tablet elementor-hidden-mobile reveal-words fade-out-scroll wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"2b92ae7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_parent&quot;:&quot;yes&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Here's to the rest of our lives, and<\/br> to spending every moment of<\/br> it <i>together<\/i>.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-696eee2 elementor-widget__width-initial elementor-hidden-desktop reveal-words wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"696eee2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_parent&quot;:&quot;yes&quot;,&quot;sticky_offset_mobile&quot;:0,&quot;sticky_effects_offset_mobile&quot;:0,&quot;sticky_anchor_link_offset_mobile&quot;:0,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Here's to the rest of our lives, and to spending every moment of it <i>together<\/i>.<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-db3fff4 e-con-full mouse-interact e-flex wcf-starter-animations-none e-con e-child\" data-id=\"db3fff4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_parent&quot;:&quot;yes&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9b01dcc e-con-full polaroid-pickup e-flex wcf-starter-animations-none e-con e-child\" data-id=\"9b01dcc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6d5e552 reveal arteta1 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"6d5e552\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1776\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-highres-scaled.jpg\" class=\"attachment-full size-full wp-image-4378\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-highres-scaled.jpg 2560w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-highres-300x208.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-highres-1024x710.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-highres-768x533.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-highres-1536x1066.jpg 1536w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-highres-2048x1421.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8c9680f reveal arteta1-m wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"8c9680f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"694\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-lowres-1.jpg\" class=\"attachment-full size-full wp-image-5825\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-lowres-1.jpg 1000w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-lowres-1-300x208.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto1-lowres-1-768x533.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5dc6478 e-con-full polaroid-pickup reveal e-flex wcf-starter-animations-none e-con e-child\" data-id=\"5dc6478\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e020e16 reveal arteta2 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"e020e16\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"759\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto7.jpg\" class=\"attachment-full size-full wp-image-1420\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto7.jpg 500w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto7-198x300.jpg 198w\" sizes=\"(max-width: 500px) 100vw, 500px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b144af5 e-con-full polaroid-pickup e-flex wcf-starter-animations-none e-con e-child\" data-id=\"b144af5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b52bb4d reveal arteta3 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"b52bb4d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"2522\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto3-highres-scaled.jpg\" class=\"attachment-full size-full wp-image-4380\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto3-highres-scaled.jpg 2522w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto3-highres-296x300.jpg 296w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto3-highres-1009x1024.jpg 1009w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto3-highres-768x780.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto3-highres-1513x1536.jpg 1513w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto3-highres-2018x2048.jpg 2018w\" sizes=\"(max-width: 2522px) 100vw, 2522px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-51b3f68 reveal arteta3-m wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"51b3f68\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"357\" height=\"408\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto3.jpg\" class=\"attachment-full size-full wp-image-1331\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto3.jpg 357w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto3-263x300.jpg 263w\" sizes=\"(max-width: 357px) 100vw, 357px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ed64d80 e-con-full polaroid-pickup e-flex wcf-starter-animations-none e-con e-child\" data-id=\"ed64d80\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6163f48 reveal arteta4 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"6163f48\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"2224\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-highres.jpg\" class=\"attachment-full size-full wp-image-4383\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-highres.jpg 2224w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-highres-261x300.jpg 261w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-highres-890x1024.jpg 890w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-highres-768x884.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-highres-1334x1536.jpg 1334w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-highres-1779x2048.jpg 1779w\" sizes=\"(max-width: 2224px) 100vw, 2224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2980161 reveal arteta4-m wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"2980161\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"691\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-lowres-1.jpg\" class=\"attachment-full size-full wp-image-5647\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-lowres-1.jpg 600w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto4-lowres-1-260x300.jpg 260w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0bdaffc e-con-full polaroid-pickup e-flex wcf-starter-animations-none e-con e-child\" data-id=\"0bdaffc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-69fd062 reveal arteta5 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"69fd062\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"2000\" height=\"1500\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto5-highres.jpg\" class=\"attachment-full size-full wp-image-4381\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto5-highres.jpg 2000w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto5-highres-300x225.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto5-highres-1024x768.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto5-highres-768x576.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto5-highres-1536x1152.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d3f193 reveal arteta5-m wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"4d3f193\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"750\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto5.jpg\" class=\"attachment-full size-full wp-image-1414\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto5.jpg 1000w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto5-300x225.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto5-768x576.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d65922 e-con-full polaroid-pickup e-flex wcf-starter-animations-none e-con e-child\" data-id=\"1d65922\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e5a7e73 reveal arteta6 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"e5a7e73\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"1333\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto6-1.jpg\" class=\"attachment-full size-full wp-image-1416\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto6-1.jpg 1000w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto6-1-225x300.jpg 225w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjphoto6-1-768x1024.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-45bde5f reveal arteta6-m wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"45bde5f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"1334\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto6-lowres-1.jpg\" class=\"attachment-full size-full wp-image-5653\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto6-lowres-1.jpg 1000w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto6-lowres-1-225x300.jpg 225w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto6-lowres-1-768x1025.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3aeb553 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"3aeb553\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-abfdfa7 reveal arteta7 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"abfdfa7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1962\" height=\"2000\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto2-highres-1-1.jpg\" class=\"attachment-full size-full wp-image-6639\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto2-highres-1-1.jpg 1962w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto2-highres-1-1-294x300.jpg 294w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto2-highres-1-1-1005x1024.jpg 1005w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto2-highres-1-1-768x783.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto2-highres-1-1-1507x1536.jpg 1507w\" sizes=\"(max-width: 1962px) 100vw, 1962px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f688c8c e-con-full polaroid-pickup e-flex wcf-starter-animations-none e-con e-child\" data-id=\"f688c8c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b490fb8 reveal arteta8 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"b490fb8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1440\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-highres-scaled.jpg\" class=\"attachment-full size-full wp-image-4379\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-highres-scaled.jpg 1440w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-highres-169x300.jpg 169w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-highres-576x1024.jpg 576w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-highres-768x1366.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-highres-864x1536.jpg 864w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-highres-1152x2048.jpg 1152w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e9046f8 reveal arteta8-m wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"e9046f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"1778\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-lowres-1.jpg\" class=\"attachment-full size-full wp-image-5654\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-lowres-1.jpg 1000w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-lowres-1-169x300.jpg 169w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-lowres-1-576x1024.jpg 576w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-lowres-1-768x1366.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjphoto8-lowres-1-864x1536.jpg 864w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-81aa8aa e-con-full polaroid-pickup e-flex wcf-starter-animations-none e-con e-child\" data-id=\"81aa8aa\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b7b5642 reveal arteta10 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"b7b5642\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"1600\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto10-highres.jpg\" class=\"attachment-full size-full wp-image-6536\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto10-highres.jpg 1200w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto10-highres-225x300.jpg 225w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto10-highres-768x1024.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto10-highres-1152x1536.jpg 1152w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f4ef066 reveal arteta10-m wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"f4ef066\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"1000\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto10-lowsres.jpg\" class=\"attachment-full size-full wp-image-6537\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto10-lowsres.jpg 750w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/zjphoto10-lowsres-225x300.jpg 225w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8e71d5c e-con-full polaroid-pickup e-flex wcf-starter-animations-none e-con e-child\" data-id=\"8e71d5c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-111647f reveal arteta9 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"111647f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1599\" height=\"1200\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/004162e4-6998-40cc-9e7d-876db58287a3.jpg\" class=\"attachment-full size-full wp-image-1711\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/004162e4-6998-40cc-9e7d-876db58287a3.jpg 1599w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/004162e4-6998-40cc-9e7d-876db58287a3-300x225.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/004162e4-6998-40cc-9e7d-876db58287a3-1024x768.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/004162e4-6998-40cc-9e7d-876db58287a3-768x576.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/004162e4-6998-40cc-9e7d-876db58287a3-1536x1153.jpg 1536w\" sizes=\"(max-width: 1599px) 100vw, 1599px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-36a0153 reveal arteta9-m wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"36a0153\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"600\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/004162e4-6998-40cc-9e7d-876db58287a3-lowres-1.jpg\" class=\"attachment-full size-full wp-image-5652\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/004162e4-6998-40cc-9e7d-876db58287a3-lowres-1.jpg 800w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/004162e4-6998-40cc-9e7d-876db58287a3-lowres-1-300x225.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/004162e4-6998-40cc-9e7d-876db58287a3-lowres-1-768x576.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-26cf272 elementor-absolute elementor-widget-mobile__width-initial elementor-widget__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"26cf272\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.5,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"259\" height=\"249\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/flower6.png\" class=\"attachment-large size-large wp-image-2891\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e90c948 elementor-widget__width-initial elementor-absolute wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"e90c948\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.5,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"200\" height=\"237\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flower13.png\" class=\"attachment-large size-large wp-image-4457\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4b6b4fb elementor-widget__width-initial elementor-absolute wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"4b6b4fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.5,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"166\" height=\"143\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/flower8.png\" class=\"attachment-large size-large wp-image-2893\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9c8a7df elementor-widget__width-initial elementor-absolute wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"9c8a7df\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.5,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"250\" height=\"212\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flower11.png\" class=\"attachment-large size-large wp-image-4419\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-387236d elementor-absolute elementor-widget-mobile__width-initial elementor-widget__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"387236d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.5,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"376\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flower12.png\" class=\"attachment-large size-large wp-image-4420\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flower12.png 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/flower12-239x300.png 239w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-808d4cf no-sticker-trail e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"808d4cf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c03285e elementor-widget elementor-widget-html\" data-id=\"c03285e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- SILENCE \/ BREATH -->\r\n<section class=\"silence\" id=\"silenceSection\">\r\n  <div class=\"silence-sticky\">\r\n    <div class=\"silence-text\" id=\"silenceText\">\r\n      <h3>Forever begins here.<\/h3>\r\n    <\/div>\r\n  <\/div>\r\n<\/section>\r\n\r\n<!-- CINEMATIC HERO REVEAL\r\n<section class=\"cinema\" id=\"cinemaSection\">\r\n  <div class=\"cinema-sticky\">\r\n    <div class=\"cinema-stage\">\r\n      <div class=\"cinema-photo\" id=\"cinHero\">\r\n        <img decoding=\"async\" src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/zjhero1.jpg\" alt=\"\">\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n<\/section>-->\r\n\r\n<script>\r\n\/* ============================================================\r\n   1) SILENCE SECTION (fade in\/out + slight rise + blur)\r\n   ============================================================ *\/\r\nconst silenceSection = document.getElementById('silenceSection');\r\nconst silenceText = document.getElementById('silenceText');\r\n\r\nfunction updateSilence() {\r\n  if (!silenceSection || !silenceText) return;\r\n\r\n  const rect = silenceSection.getBoundingClientRect();\r\n  const total = silenceSection.offsetHeight - window.innerHeight;\r\n  const scrolled = -rect.top;\r\n  const progress = Math.max(0, Math.min(1, scrolled \/ total));\r\n\r\n  let opacity = 0;\r\n  if (progress < 0.15) {\r\n    \/\/ Fade IN: 0 -> 15%\r\n    opacity = progress \/ 0.15;\r\n  } else if (progress < 0.55) {\r\n    \/\/ HOLD fully visible: 15% -> 55%\r\n    opacity = 1;\r\n  } else if (progress < 0.85) {\r\n    \/\/ Fade OUT: 55% -> 75%\r\n    opacity = 1 - (progress - 0.55) \/ 0.20;\r\n  } else {\r\n    \/\/ Done \u2014 stays invisible for the rest\r\n    opacity = 0;\r\n  }\r\n\r\n  const ty = (1 - opacity) * 20;\r\n  const blur = (1 - opacity) *10; \/\/ 20px blur when invisible, 0px when fully visible\r\n\r\n  silenceText.style.opacity = opacity.toFixed(3);\r\n  silenceText.style.transform = `translateY(${ty}px)`;\r\n  silenceText.style.filter = `blur(${blur.toFixed(2)}px)`;\r\n}\r\n\r\n\/* ============================================================\r\n   2) CINEMATIC HERO REVEAL (single photo, no end-scale drift)\r\n   ----------------------------------------------------------------\r\n   Phases:\r\n     0.00 - 0.25 : hero fades in, scaling 0.94 -> 1.0\r\n     0.25 - 1.00 : held large & centered at scale 1.0\r\n   ============================================================ *\/\r\nconst cinemaSection = document.getElementById('cinemaSection');\r\nconst cinHero = document.getElementById('cinHero');\r\n\r\nfunction lerp(a, b, t) { return a + (b - a) * t; }\r\nfunction clamp(v, a, b) { return Math.max(a, Math.min(b, v)); }\r\nfunction easeOut(t) { return 1 - Math.pow(1 - t, 3); }\r\n\r\nfunction updateCinema() {\r\n  if (!cinemaSection || !cinHero) return;\r\n\r\n  const rect = cinemaSection.getBoundingClientRect();\r\n  const total = cinemaSection.offsetHeight - window.innerHeight;\r\n  const scrolled = -rect.top;\r\n  const p = Math.max(0, Math.min(1, scrolled \/ total));\r\n\r\n  const vw = window.innerWidth;\r\n  const vh = window.innerHeight;\r\n  const mobile = vw < 768;\r\n\r\n  \/\/ Hero size: tall portrait, dominates the frame\r\n  const heroH = mobile ? vh * 0.72 : vh * 0.82;\r\n  const heroW = heroH * (2 \/ 3);\r\n\r\n  \/\/ Opacity fade-in: 0 -> 0.12\r\n  let opacity = 0;\r\n  if (p < 0.25) opacity = easeOut(p \/ 0.12);\r\n  else opacity = 1;\r\n\r\n  \/\/ Scale: subtle entrance only, then locked at 1.0\r\n  let scale = 1;\r\n  if (p < 0.12) {\r\n    scale = lerp(0.94, 1.0, easeOut(clamp(p \/ 0.12, 0, 1)));\r\n  } else {\r\n    scale = 1.0;\r\n  }\r\n\r\n  cinHero.style.width = heroW + 'px';\r\n  cinHero.style.height = heroH + 'px';\r\n  cinHero.style.left = '50%';\r\n  cinHero.style.top = '50%';\r\n  cinHero.style.transform = `translate(-50%, -50%) scale(${scale})`;\r\n  cinHero.style.opacity = opacity.toFixed(3);\r\n}\r\n\r\n\/* ============================================================\r\n   SCROLL DRIVER\r\n   ============================================================ *\/\r\nlet ticking = false;\r\nfunction onScroll() {\r\n  if (!ticking) {\r\n    requestAnimationFrame(() => {\r\n      updateSilence();\r\n      updateCinema();\r\n      ticking = false;\r\n    });\r\n    ticking = true;\r\n  }\r\n}\r\n\r\nwindow.addEventListener('scroll', onScroll, { passive: true });\r\nwindow.addEventListener('resize', () => { updateSilence(); updateCinema(); });\r\nwindow.addEventListener('load', () => { updateSilence(); updateCinema(); });\r\n\r\nupdateSilence();\r\nupdateCinema();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-42c3f56 no-sticker-trail e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"42c3f56\" 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-c19ff04 e-con-full pinkbg e-flex wcf-starter-animations-none e-con e-child\" data-id=\"c19ff04\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;background_motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;background_motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;background_motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:2,&quot;sizes&quot;:[]},&quot;background_motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;background_motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a86e17c e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"a86e17c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-656be76 e-con-full parallax-img-window reveal e-flex wcf-starter-animations-none e-con e-child\" data-id=\"656be76\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8329e6d parallax-img artetahero2 elementor-widget-mobile__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"8329e6d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_anim_duration&quot;:600,&quot;wcf_anim_delay&quot;:300,&quot;wcf_anim_ease&quot;:&quot;cubic-bezier(.25,.8,.25,1)&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1707\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-scaled.jpg\" class=\"attachment-full size-full wp-image-1692\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-scaled.jpg 1707w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-200x300.jpg 200w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-683x1024.jpg 683w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-768x1152.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-1024x1536.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f697b3e e-con-full parallax-img-window reveal e-flex wcf-starter-animations-none e-con e-child\" data-id=\"f697b3e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5432b46 parallax-img artetahero1 elementor-widget-mobile__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"5432b46\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_anim_duration&quot;:600,&quot;wcf_anim_delay&quot;:300,&quot;wcf_anim_ease&quot;:&quot;cubic-bezier(.25,.8,.25,1)&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1707\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero1-2-scaled.jpg\" class=\"attachment-full size-full wp-image-1695\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero1-2-scaled.jpg 1707w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero1-2-200x300.jpg 200w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero1-2-683x1024.jpg 683w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero1-2-768x1152.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero1-2-1024x1536.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero1-2-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9b24989 e-con-full parallax-img-window reveal e-flex wcf-starter-animations-none e-con e-child\" data-id=\"9b24989\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-989a2e9 parallax-img artetahero3 elementor-widget-mobile__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"989a2e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_anim_duration&quot;:600,&quot;wcf_anim_delay&quot;:300,&quot;wcf_anim_ease&quot;:&quot;cubic-bezier(.25,.8,.25,1)&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1,&quot;sizes&quot;:[]},&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1707\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-scaled.jpg\" class=\"attachment-full size-full wp-image-1693\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-scaled.jpg 1707w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-200x300.jpg 200w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-683x1024.jpg 683w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-768x1152.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-1024x1536.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-296a8fe e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"296a8fe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a1c5eec e-con-full parallax-img-window reveal e-flex wcf-starter-animations-none e-con e-child\" data-id=\"a1c5eec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c12930e parallax-img artetahero2-m elementor-widget-mobile__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"c12930e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_anim_duration&quot;:600,&quot;wcf_anim_delay&quot;:300,&quot;wcf_anim_ease&quot;:&quot;cubic-bezier(.25,.8,.25,1)&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.75,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1707\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-scaled.jpg\" class=\"attachment-full size-full wp-image-1692\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-scaled.jpg 1707w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-200x300.jpg 200w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-683x1024.jpg 683w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-768x1152.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-1024x1536.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero2-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0ddf1e1 e-con-full parallax-img-window reveal e-flex wcf-starter-animations-none e-con e-child\" data-id=\"0ddf1e1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9c2923a parallax-img artetahero1-m elementor-widget-mobile__width-initial e-transform wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"9c2923a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_anim_duration&quot;:600,&quot;wcf_anim_delay&quot;:300,&quot;wcf_anim_ease&quot;:&quot;cubic-bezier(.25,.8,.25,1)&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.75,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-75,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-150,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_translateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1250\" height=\"1875\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjhero1-lowres-1.jpg\" class=\"attachment-full size-full wp-image-5658\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjhero1-lowres-1.jpg 1250w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjhero1-lowres-1-200x300.jpg 200w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjhero1-lowres-1-683x1024.jpg 683w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjhero1-lowres-1-768x1152.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/06\/zjhero1-lowres-1-1024x1536.jpg 1024w\" sizes=\"(max-width: 1250px) 100vw, 1250px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4b90c88 e-con-full parallax-img-window reveal artetahero3-m e-flex wcf-starter-animations-none e-con e-child\" data-id=\"4b90c88\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-187f8a3 parallax-img elementor-widget-mobile__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"187f8a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_anim_duration&quot;:600,&quot;wcf_anim_delay&quot;:300,&quot;wcf_anim_ease&quot;:&quot;cubic-bezier(.25,.8,.25,1)&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.75,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1707\" height=\"2560\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-scaled.jpg\" class=\"attachment-full size-full wp-image-1693\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-scaled.jpg 1707w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-200x300.jpg 200w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-683x1024.jpg 683w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-768x1152.jpg 768w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-1024x1536.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/zjhero3-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-297dc37 e-grid elementor-hidden-mobile no-sticker-trail e-con-full elementor-hidden-tablet wcf-starter-animations-none e-con e-parent\" data-id=\"297dc37\" data-element_type=\"container\" data-e-type=\"container\" id=\"accommodations-desk\">\n\t\t<div class=\"elementor-element elementor-element-060fb9f e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"060fb9f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/jernobia.kinsta.cloud\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/0611.mp4&quot;}\">\n\t\t<div class=\"elementor-background-video-container elementor-hidden-mobile\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0297c58 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"0297c58\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b3ab0f5 reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"b3ab0f5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Accommodations<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ee734b5 elementor-widget__width-initial reveal-lines wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"ee734b5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">To make your experience as enjoyable as possible, we are delighted to offer you two accommodation options for our celebration in Phuket.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1575359 elementor-widget elementor-widget-html\" data-id=\"1575359\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"glow2\"><\/div>\r\n\r\n<div class=\"stage2\">\r\n  <div class=\"layer-tilt2\">\r\n    <div class=\"layer-sway2\">\r\n      <div class=\"layer-breathe2\">\r\n        <div class=\"layer-curl2\">\r\n          <div class=\"layer-ripple2\">\r\n            <div class=\"layer-tremble2\">\r\n\r\n              <!-- Swap the src below with any petal image (PNG with transparency works best). -->\r\n              <img decoding=\"async\"\r\n                class=\"petal-img2\"\r\n                alt=\"petal\"\r\n                src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower1.png\"\r\n              \/>\r\n\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ab2d498 elementor-hidden-desktop e-con-full e-flex wcf-starter-animations-none e-con e-parent\" data-id=\"ab2d498\" data-element_type=\"container\" data-e-type=\"container\" id=\"accommodations-mob\">\n\t\t<div class=\"elementor-element elementor-element-fe326f6 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"fe326f6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/jernobia.kinsta.cloud\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/06111-1.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d984a3 e-con-full e-transform e-transform e-flex wcf-starter-animations-none e-con e-child\" data-id=\"1d984a3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/jernobia.kinsta.cloud\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/0611.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;,&quot;_transform_translateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-80,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.35,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-db7e08f e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"db7e08f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-786c694 reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"786c694\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Accommodations<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c415fdd elementor-widget__width-initial reveal-lines wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"c415fdd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">To make your experience as enjoyable as possible, we are delighted to offer you two accommodation options for our celebration in Phuket.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ef1b995 elementor-widget elementor-widget-html\" data-id=\"ef1b995\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"glow2\"><\/div>\r\n\r\n<div class=\"stage2\">\r\n  <div class=\"layer-tilt2\">\r\n    <div class=\"layer-sway2\">\r\n      <div class=\"layer-breathe2\">\r\n        <div class=\"layer-curl2\">\r\n          <div class=\"layer-ripple2\">\r\n            <div class=\"layer-tremble2\">\r\n\r\n              <!-- Swap the src below with any petal image (PNG with transparency works best). -->\r\n              <img decoding=\"async\"\r\n                class=\"petal-img2\"\r\n                alt=\"petal\"\r\n                src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower1.png\"\r\n              \/>\r\n\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d595434 e-grid no-sticker-trail e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"d595434\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-654ea15 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"654ea15\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-14bcdd5 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"14bcdd5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e611c0f elementor-widget elementor-widget-html\" data-id=\"e611c0f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t  <div class=\"glow\"><\/div>\r\n\r\n  <div class=\"stage\">\r\n    <div class=\"layer-tilt\">\r\n      <div class=\"layer-sway\">\r\n        <div class=\"layer-breathe\">\r\n          <div class=\"layer-curl\">\r\n            <div class=\"layer-ripple\">\r\n              <div class=\"layer-tremble\">\r\n\r\n                <!-- Swap the src below with any petal image (PNG with transparency works best). -->\r\n                <img decoding=\"async\"\r\n                  class=\"petal-img\"\r\n                  alt=\"petal\"\r\n                  src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower2.png\"\r\n                \/>\r\n\r\n              <\/div>\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3fc8c4a elementor-widget-mobile__width-initial elementor-widget elementor-widget-html\" data-id=\"3fc8c4a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"stamp-frame\">\r\n  <div class=\"stamp-content\">\r\n    <video \r\n      class=\"stamp-video\"\r\n      autoplay \r\n      loop \r\n      muted \r\n      playsinline \r\n      poster=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/ozone-villa-stamp-still.jpg\"\r\n      data-desktop=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/05202.mp4\"\r\n      data-mobile=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/05202-1.mp4\"\r\n      onerror=\"this.style.display='none';\">\r\n      <source type=\"video\/mp4\">\r\n    <\/video>\r\n  <\/div>\r\n<\/div>\r\n\r\n<script>\r\n(function() {\r\n  \/\/ Guard: only run the setup logic once per page, even if the script is included multiple times\r\n  if (window.__stampVideoInit) return;\r\n  window.__stampVideoInit = true;\r\n\r\n  const mq = window.matchMedia('(min-width: 767px)');\r\n\r\n  function updateAll(e) {\r\n    const isDesktop = e.matches;\r\n    document.querySelectorAll('video.stamp-video').forEach(video => {\r\n      const source = video.querySelector('source');\r\n      if (!source) return;\r\n\r\n      const newSrc = isDesktop \r\n        ? video.dataset.desktop \r\n        : video.dataset.mobile;\r\n\r\n      if (source.src === newSrc) return;\r\n      source.src = newSrc;\r\n      video.load();\r\n      video.play().catch(() => {});\r\n    });\r\n  }\r\n\r\n  \/\/ Run once DOM is ready (Elementor widgets may render after script tags)\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', () => updateAll(mq));\r\n  } else {\r\n    updateAll(mq);\r\n  }\r\n\r\n  mq.addEventListener('change', updateAll);\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-87c2975 elementor-widget elementor-widget-html\" data-id=\"87c2975\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"glow2\"><\/div>\r\n\r\n<div class=\"stage2\">\r\n  <div class=\"layer-tilt2\">\r\n    <div class=\"layer-sway2\">\r\n      <div class=\"layer-breathe2\">\r\n        <div class=\"layer-curl2\">\r\n          <div class=\"layer-ripple2\">\r\n            <div class=\"layer-tremble2\">\r\n\r\n              <!-- Swap the src below with any petal image (PNG with transparency works best). -->\r\n              <img decoding=\"async\"\r\n                class=\"petal-img2\"\r\n                alt=\"petal\"\r\n                src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower3.png\"\r\n              \/>\r\n\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7c3b3c3 elementor-widget__width-initial reveal-words wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"7c3b3c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">WITH OUR COMPLIMENTS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f17c3d9 reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"f17c3d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Ozone Villa<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2644df0 reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"2644df0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Ozone Villa<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9389523 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"9389523\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c79539a elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"c79539a\" 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 aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-map-marker-alt\" viewBox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6621a19 wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"6621a19\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">15 minutes from Venue<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-37eed0f elementor-widget__width-initial reveal-lines wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"37eed0f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">We will be providing hotel accommodations for up to two nights at Ozone Villa 15 minutes from venue or Novotel Phuket in Old Town Phuket, subject to availability.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6dc2fd7 reveal elementor-widget__width-initial elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"6dc2fd7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-184ad32 e-con-full e-grid elementor-hidden-mobile wcf-starter-animations-none e-con e-child\" data-id=\"184ad32\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-04c91f5 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"04c91f5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f1cad4f wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"f1cad4f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"28\" height=\"17\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/bed-icon.png\" class=\"attachment-large size-large wp-image-149\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6c9b2af reveal-lines wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"6c9b2af\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Limited Rooms<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6d8a283 e-con-full elementor-hidden-desktop elementor-hidden-tablet e-flex wcf-starter-animations-none e-con e-child\" data-id=\"6d8a283\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c0b9e4c e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"c0b9e4c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-27dc415 wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"27dc415\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"28\" height=\"17\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/bed-icon.png\" class=\"attachment-large size-large wp-image-149\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-705ba7d wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"705ba7d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Limited Rooms<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cd9abc3 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"cd9abc3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d5e4bbb e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"d5e4bbb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d1292d5 elementor-widget elementor-widget-html\" data-id=\"d1292d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"glow3\"><\/div>\r\n\r\n  <div class=\"stage3\">\r\n    <div class=\"layer-tilt3\">\r\n      <div class=\"layer-sway3\">\r\n        <div class=\"layer-breathe3\">\r\n          <div class=\"layer-curl3\">\r\n            <div class=\"layer-ripple3\">\r\n              <div class=\"layer-tremble3\">\r\n\r\n                <!-- Swap the src below with any petal image (PNG with transparency works best). -->\r\n                <img decoding=\"async\"\r\n                  class=\"petal-img3\"\r\n                  alt=\"petal\"\r\n                  src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower4.png\"\r\n                \/>\r\n\r\n              <\/div>\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f302a45 elementor-widget-mobile__width-initial elementor-widget elementor-widget-html\" data-id=\"f302a45\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"stamp-frame\">\r\n  <div class=\"stamp-content\">\r\n    <video \r\n      class=\"stamp-video\"\r\n      autoplay \r\n      loop \r\n      muted \r\n      playsinline \r\n      poster=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/como-point-stamp-still.jpg\"\r\n      data-desktop=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/como-point.mp4\"\r\n      data-mobile=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/como-point-1.mp4\"\r\n      onerror=\"this.style.display='none';\">\r\n      <source type=\"video\/mp4\">\r\n    <\/video>\r\n  <\/div>\r\n<\/div>\r\n\r\n<script>\r\n(function() {\r\n  \/\/ Guard: only run the setup logic once per page, even if the script is included multiple times\r\n  if (window.__stampVideoInit) return;\r\n  window.__stampVideoInit = true;\r\n\r\n  const mq = window.matchMedia('(min-width: 767px)');\r\n\r\n  function updateAll(e) {\r\n    const isDesktop = e.matches;\r\n    document.querySelectorAll('video.stamp-video').forEach(video => {\r\n      const source = video.querySelector('source');\r\n      if (!source) return;\r\n\r\n      const newSrc = isDesktop \r\n        ? video.dataset.desktop \r\n        : video.dataset.mobile;\r\n\r\n      if (source.src === newSrc) return;\r\n      source.src = newSrc;\r\n      video.load();\r\n      video.play().catch(() => {});\r\n    });\r\n  }\r\n\r\n  \/\/ Run once DOM is ready (Elementor widgets may render after script tags)\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', () => updateAll(mq));\r\n  } else {\r\n    updateAll(mq);\r\n  }\r\n\r\n  mq.addEventListener('change', updateAll);\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-59efcd6 elementor-widget elementor-widget-html\" data-id=\"59efcd6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"glow4\"><\/div>\r\n\r\n<div class=\"stage4\">\r\n  <div class=\"layer-tilt4\">\r\n    <div class=\"layer-sway4\">\r\n      <div class=\"layer-breathe4\">\r\n        <div class=\"layer-curl4\">\r\n          <div class=\"layer-ripple4\">\r\n            <div class=\"layer-tremble4\">\r\n\r\n              <!-- Swap the src below with any petal image (PNG with transparency works best). -->\r\n              <img decoding=\"async\"\r\n                class=\"petal-img4\"\r\n                alt=\"petal\"\r\n                src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower5.png\"\r\n              \/>\r\n\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5189cd1 reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"5189cd1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Como Point Yamu<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5af7544 reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"5af7544\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Como Point Yamu<\/h2>\t\t\t\t<\/div>\n\t\t<a class=\"elementor-element elementor-element-108c2a1 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"108c2a1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\" href=\"https:\/\/www.google.com\/maps?sca_esv=c6a419c7fa69ef73&#038;output=search&#038;q=como+point+yamu&#038;source=lnms&#038;fbs=ADc_l-aN0CWEZBOHjofHoaMMDiKpaEWjvZ2Py1XXV8d8KvlI3j2nXl-YQ05KjnWz5SrU93HEjYyChsjChlPh8hoCFXOKjeplqQPtiZNYHI1x6Y2kOTHm9XD9IzVrFaarfHZbMV8sfgdPCnw6cWaB_ae3Ty5o9G21eWZipgxIMEgOeGrSiBGTpkOaDYOZUJIA172EBzi639ICvq17e-5aBvNehMNBEjROSw&#038;entry=mc&#038;ved=1t:200715&#038;ictx=111\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22d8f9f elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"22d8f9f\" 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 aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-map-marker-alt\" viewBox=\"0 0 384 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd358db wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"cd358db\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">At the Wedding Venue<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/a>\n\t\t\t\t<div class=\"elementor-element elementor-element-85f9084 elementor-widget__width-initial reveal-lines wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"85f9084\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">If you'd rather stay right at the heart of the wedding festivities, we've arranged a special discount at COMO Point Yamu. Of course, feel free to explore other options that suit your plans.\nKindly inform us if you make your own booking, so we may coordinate with the hotel to ensure a suitably located room.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3fde8d5 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"3fde8d5\" 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:\/\/reservations.comohotels.com\/?Hotel=60269&#038;Chain=10327&#038;promo=GRPNWEDKJY&#038;rate=GRPNWEDKJY\">\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\t\t<div class=\"elementor-element elementor-element-710f320 elementor-widget__width-initial reveal-lines wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"710f320\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Please check if this is the best deal.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b43d206 flowerbg no-sticker-trail elementor-hidden-mobile e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"b43d206\" data-element_type=\"container\" data-e-type=\"container\" id=\"schedule-desk\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/jernobia.kinsta.cloud\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/kling_20260609_\\u4f5c\\u54c1_Extreme_ma_5464_1-1.mp4&quot;,&quot;background_privacy_mode&quot;:&quot;yes&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-background-video-container elementor-hidden-mobile\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div><div class=\"elementor-element elementor-element-db9306f e-con-full e-transform e-flex wcf-starter-animations-none e-con e-child\" data-id=\"db9306f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-1.5,&quot;sizes&quot;:[]},&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_rotateZ_effect&quot;:&quot;yes&quot;,&quot;motion_fx_rotateZ_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.25,&quot;sizes&quot;:[]},&quot;motion_fx_rotateZ_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:50}},&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:7.5,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:50}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-7554d5b e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"7554d5b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9cd9917 elementor-absolute elementor-widget__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"9cd9917\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"119\" height=\"226\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/paperclip-cropped.png\" class=\"attachment-large size-large wp-image-512\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2c5fa50 reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"2c5fa50\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Schedule<\/br>of Events<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6528585 elementor-widget__width-initial reveal-words wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"6528585\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Events to be<\/br>\n announced soon!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f329a69 elementor-widget elementor-widget-html\" data-id=\"f329a69\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"glow2\"><\/div>\r\n\r\n<div class=\"stage2\">\r\n  <div class=\"layer-tilt2\">\r\n    <div class=\"layer-sway2\">\r\n      <div class=\"layer-breathe2\">\r\n        <div class=\"layer-curl2\">\r\n          <div class=\"layer-ripple2\">\r\n            <div class=\"layer-tremble2\">\r\n\r\n              <!-- Swap the src below with any petal image (PNG with transparency works best). -->\r\n              <img decoding=\"async\"\r\n                class=\"petal-img2\"\r\n                alt=\"petal\"\r\n                src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower1.png\"\r\n              \/>\r\n\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-03ab39b elementor-widget__width-initial reveal-lines wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"03ab39b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">We'll update this page as soon as everything is confirmed.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-10c08d8 flowerbg e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"10c08d8\" data-element_type=\"container\" data-e-type=\"container\" id=\"schedule-mob\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/jernobia.kinsta.cloud\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/kling_20260609_\\u4f5c\\u54c1_Extreme_ma_5464_1-1-1.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;,&quot;background_privacy_mode&quot;:&quot;yes&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div><div class=\"elementor-element elementor-element-a1598f3 e-con-full e-transform e-flex wcf-starter-animations-none e-con e-child\" data-id=\"a1598f3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-1.5,&quot;sizes&quot;:[]},&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_rotateZ_effect&quot;:&quot;yes&quot;,&quot;motion_fx_rotateZ_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.18,&quot;sizes&quot;:[]},&quot;motion_fx_rotateZ_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:50}},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:-3,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:2.75,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:50}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-15b68af e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"15b68af\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d767f14 elementor-absolute wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"d767f14\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"119\" height=\"226\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/paperclip-cropped.png\" class=\"attachment-large size-large wp-image-512\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5a666d2 reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"5a666d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Schedule<\/br>of Events<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3820c3e elementor-widget__width-initial reveal-words wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"3820c3e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Events to be<\/br>\n announced soon!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e0f581f elementor-widget__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"e0f581f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"169\" height=\"153\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/flower1.png\" class=\"attachment-large size-large wp-image-106\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-364d4ae elementor-widget__width-initial wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"364d4ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">We'll update this page as soon as everything is confirmed. Stay tuned!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-38c6fec dress-code e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"38c6fec\" data-element_type=\"container\" data-e-type=\"container\" id=\"dress-code\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f8b8d57 reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"f8b8d57\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Dress Code<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-500db55 reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"500db55\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Dress Code<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-49909ce e-grid e-con-full wcf-starter-animations-none e-con e-child\" data-id=\"49909ce\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-830b814 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"830b814\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"182\" height=\"170\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower1.png\" class=\"attachment-large size-large wp-image-114\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-472535e reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"472535e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"172\" height=\"170\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower2.png\" class=\"attachment-large size-large wp-image-115\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b12d931 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"b12d931\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"181\" height=\"181\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower3.png\" class=\"attachment-large size-large wp-image-117\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower3.png 181w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower3-150x150.png 150w\" sizes=\"(max-width: 181px) 100vw, 181px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bab28dd reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"bab28dd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"183\" height=\"170\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower4.png\" class=\"attachment-large size-large wp-image-116\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4f0a733 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"4f0a733\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"186\" height=\"179\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower5.png\" class=\"attachment-large size-large wp-image-118\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-575cd88 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"575cd88\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"166\" height=\"166\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower6.png\" class=\"attachment-large size-large wp-image-119\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower6.png 166w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower6-150x150.png 150w\" sizes=\"(max-width: 166px) 100vw, 166px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fbd4584 e-con-full e-grid wcf-starter-animations-none e-con e-child\" data-id=\"fbd4584\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-73da652 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"73da652\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"182\" height=\"170\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower1.png\" class=\"attachment-large size-large wp-image-114\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-36fe1f0 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"36fe1f0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"172\" height=\"170\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower2.png\" class=\"attachment-large size-large wp-image-115\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-82b2636 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"82b2636\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"181\" height=\"181\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower3.png\" class=\"attachment-large size-large wp-image-117\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower3.png 181w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower3-150x150.png 150w\" sizes=\"(max-width: 181px) 100vw, 181px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e25b72b reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"e25b72b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"183\" height=\"170\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower4.png\" class=\"attachment-large size-large wp-image-116\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-002ab9f reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"002ab9f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"186\" height=\"179\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower5.png\" class=\"attachment-large size-large wp-image-118\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-87ef0b9 reveal wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"87ef0b9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"166\" height=\"166\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower6.png\" class=\"attachment-large size-large wp-image-119\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower6.png 166w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/dressflower6-150x150.png 150w\" sizes=\"(max-width: 166px) 100vw, 166px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cf19c74 reveal-words elementor-widget__width-initial wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"cf19c74\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Light Colours<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c12bff3 elementor-widget__width-initial reveal-lines wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"c12bff3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Our dress code is <b>light colors, garden formal<\/b>. Feel free to take inspiration from the colors above, but there\u2019s no pressure to match them perfectly. Think fun florals, sundresses, and linen suits. Most importantly, wear whatever makes you feel your best and allows you to eat, laugh, and move freely as we celebrate and dance the night away! \ud83d\udc83\u2728<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5b53f2a no-sticker-trail e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"5b53f2a\" data-element_type=\"container\" data-e-type=\"container\" id=\"rsvp\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-61182c4 reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"61182c4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">R\u00e9pondez S'il Vous Pla\u00eet<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aa2a148 reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"aa2a148\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">R\u00e9pondez<\/br>S'il Vous Pla\u00eet<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-201fa06 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"201fa06\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d859ad8 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"d859ad8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5162dca e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"5162dca\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-051756a e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"051756a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-044613c e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"044613c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d43d94 elementor-widget-mobile__width-initial elementor-widget-tablet__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"5d43d94\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"75\" height=\"75\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/stamp1.png\" class=\"attachment-large size-large wp-image-491\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2d664c0 elementor-widget-mobile__width-initial elementor-widget__width-initial wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"2d664c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"87\" height=\"124\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/05\/stamp2.png\" class=\"attachment-large size-large wp-image-492\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-80d03d3 reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"80d03d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">kindly<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-505dda9 reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"505dda9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">kindly<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7dde96b reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"7dde96b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">RSVP<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-027236a reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"027236a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">RSVP<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-610c6c0 reveal-words wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"610c6c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">By 15 August<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cef52ae e-con-full elementor-hidden-mobile e-flex wcf-starter-animations-none e-con e-child\" data-id=\"cef52ae\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9ad69c4 e-transform artetaenvelopedesktop e-transform wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"9ad69c4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_direction&quot;:&quot;negative&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.6,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.275,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:50,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.4,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-20,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_translateX_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateX_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_translateY_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1511\" height=\"1100\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/envelope-banner-desktop-v2-2.jpg\" class=\"attachment-full size-full wp-image-6456\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/envelope-banner-desktop-v2-2.jpg 1511w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/envelope-banner-desktop-v2-2-300x218.jpg 300w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/envelope-banner-desktop-v2-2-1024x745.jpg 1024w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/envelope-banner-desktop-v2-2-768x559.jpg 768w\" sizes=\"(max-width: 1511px) 100vw, 1511px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b187624 elementor-widget__width-initial ekit-fluent-form-widget-step-header-yes ekit-fluent-form-widget-step-progressbar-yes fluentform-widget-submit-button-custom elementor-widget elementor-widget-elementskit-fluent-forms\" data-id=\"b187624\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"elementskit-fluent-forms.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\">\n            <div class=\"fluentform-widget-wrapper fluentform-widget-align-left\">\n\n                \n                <div class='fluentform ff-default fluentform_wrapper_3 ffs_default_wrap'><form data-form_id=\"3\" id=\"fluentform_3\" class=\"frm-fluent-form fluent_form_3 ff-el-form-top ff_form_instance_3_1 ff-form-loading ffs_default\" data-form_instance=\"ff_form_instance_3_1\" method=\"POST\" ><fieldset  style=\"border: none!important;margin: 0!important;padding: 0!important;background-color: transparent!important;box-shadow: none!important;outline: none!important; min-inline-size: 100%;\">\n                    <legend class=\"ff_screen_reader_title\" style=\"display: block; margin: 0!important;padding: 0!important;height: 0!important;text-indent: -999999px;width: 0!important;overflow:hidden;\">Event Registration Form (#3)<\/legend><p style=\"display: none !important;\" class=\"akismet-fields-container\" data-prefix=\"ak_\"><label>&#916;<textarea name=\"ak_hp_textarea\" cols=\"45\" rows=\"8\" maxlength=\"100\"><\/textarea><\/label><input type=\"hidden\" id=\"ak_js_1\" name=\"ak_js\" value=\"161\"\/><script>document.getElementById( \"ak_js_1\" ).setAttribute( \"value\", ( new Date() ).getTime() );<\/script><\/p><input type='hidden' name='__fluent_form_embded_post_id' value='9' \/><input type=\"hidden\" id=\"_fluentform_3_fluentformnonce\" name=\"_fluentform_3_fluentformnonce\" value=\"39fe1b2a22\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/\" \/><div data-type=\"name-element\" data-name=\"names\" class=\" ff-field_container ff-name-field-wrapper\" ><div class='ff-t-container'><div class='ff-t-cell '><div class='ff-el-group'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label for='ff_3_names_first_name_' id='label_ff_3_names_first_name_' >First Name<\/label><\/div><div class='ff-el-input--content'><input type=\"text\" name=\"names[first_name]\" id=\"ff_3_names_first_name_\" class=\"ff-el-form-control\" aria-invalid=\"false\" aria-required=true><\/div><\/div><\/div><div class='ff-t-cell '><div class='ff-el-group'><div class=\"ff-el-input--label asterisk-right\"><label for='ff_3_names_last_name_' id='label_ff_3_names_last_name_' >Last Name<\/label><\/div><div class='ff-el-input--content'><input type=\"text\" name=\"names[last_name]\" id=\"ff_3_names_last_name_\" class=\"ff-el-form-control\" aria-invalid=\"false\" aria-required=false><\/div><\/div><\/div><\/div><\/div><div class='ff-el-group'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label for='ff_3_email' id='label_ff_3_email' aria-label=\"Email Address\">Email Address<\/label><\/div><div class='ff-el-input--content'><input type=\"email\" name=\"email\" id=\"ff_3_email\" class=\"ff-el-form-control\" placeholder=\"you@domain.com\" data-name=\"email\"  aria-invalid=\"false\" aria-required=true><\/div><\/div><div class='ff-el-group'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label for='ff_3_phone' id='label_ff_3_phone' aria-label=\"WhatsApp Number\">WhatsApp Number<\/label><\/div><div class='ff-el-input--content'><input type=\"number\" name=\"phone\" id=\"ff_3_phone\" class=\"ff-el-form-control\" placeholder=\"Your phone number\" data-name=\"phone\" inputmode=\"numeric\" step=\"any\"  aria-invalid=\"false\" aria-required=true><\/div><\/div><div class='ff-el-group  ff_list_2col'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label   aria-label=\"Will you be attending?\">Will you be attending?<\/label><\/div><div class='ff-el-input--content'><div class='ff-el-form-check ff-el-form-check-'><label class='ff-el-form-check-label' for='input_radio_e9c0d9a1464cd9f9ac10dfef74a1b042'><input  type=\"radio\" name=\"input_radio\" data-name=\"input_radio\" class=\"ff-el-form-check-input ff-el-form-check-radio\" value=\"Joyfully Accept\"  id='input_radio_e9c0d9a1464cd9f9ac10dfef74a1b042' aria-label='Joyfully Accept' aria-invalid='false' aria-required=true> <span>Joyfully Accept<\/span><\/label><\/div><div class='ff-el-form-check ff-el-form-check-'><label class='ff-el-form-check-label' for='input_radio_3ce8f440beaf9d6a471ac1b0a419e5c5'><input  type=\"radio\" name=\"input_radio\" data-name=\"input_radio\" class=\"ff-el-form-check-input ff-el-form-check-radio\" value=\"Regretfully Decline\"  id='input_radio_3ce8f440beaf9d6a471ac1b0a419e5c5' aria-label='Regretfully Decline' aria-invalid='false' aria-required=true> <span>Regretfully Decline<\/span><\/label><\/div><\/div><\/div><div class='ff-el-group has-conditions guest-counter'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label for='ff_3_numeric_field' id='label_ff_3_numeric_field' aria-label=\"Number of guest(s) attending\">Number of guest(s) attending<\/label><\/div><div class='ff-el-input--content'><input type=\"number\" name=\"numeric_field\" id=\"ff_3_numeric_field\" class=\"ff-el-form-control\" placeholder=\"0\" data-name=\"numeric_field\" inputmode=\"numeric\" step=\"any\" min=\"0\" aria-valuemin=\"0\" max=\"10\" aria-valuemax=\"10\"  aria-invalid=\"false\" aria-required=true><\/div><\/div><div class='ff-el-group has-conditions'><div class=\"ff-el-input--label asterisk-right\"><label for='ff_3_input_text' id='label_ff_3_input_text' aria-label=\"What are the names of guests attending? (Separate by commas)\">What are the names of guests attending? (Separate by commas)<\/label><\/div><div class='ff-el-input--content'><input type=\"text\" name=\"input_text\" class=\"ff-el-form-control\" data-name=\"input_text\" id=\"ff_3_input_text\"  aria-invalid=\"false\" aria-required=false><\/div><\/div><div class='ff-el-group has-conditions  ff_list_2col'><div class=\"ff-el-input--label ff-el-is-required asterisk-right\"><label   aria-label=\"Please reserve a complimentary room for us. (Ozone villa)\">Please reserve a complimentary room for us. (Ozone villa)<\/label><\/div><div class='ff-el-input--content'><div class='ff-el-form-check ff-el-form-check-'><label class='ff-el-form-check-label' for='input_radio_1_cb28a17b0a18ab111dc66d3c30ad84e7'><input  type=\"radio\" name=\"input_radio_1\" data-name=\"input_radio_1\" class=\"ff-el-form-check-input ff-el-form-check-radio\" value=\"yes\"  id='input_radio_1_cb28a17b0a18ab111dc66d3c30ad84e7' aria-label='Yes' aria-invalid='false' aria-required=true> <span>Yes<\/span><\/label><\/div><div class='ff-el-form-check ff-el-form-check-'><label class='ff-el-form-check-label' for='input_radio_1_e10a38da5b9ee5cbca7ac5954c7e18e2'><input  type=\"radio\" name=\"input_radio_1\" data-name=\"input_radio_1\" class=\"ff-el-form-check-input ff-el-form-check-radio\" value=\"No, we will book ourselves\"  id='input_radio_1_e10a38da5b9ee5cbca7ac5954c7e18e2' aria-label='No, we will book ourselves' aria-invalid='false' aria-required=true> <span>No, we will book ourselves<\/span><\/label><\/div><\/div><\/div><div class='ff-el-group has-conditions wedding-date-cards'><div class=\"ff-el-input--label asterisk-right\"><label   aria-label=\"Select date(s)\">Select date(s)<\/label><\/div><div class='ff-el-input--content'><div class='ff-el-form-check ff-el-form-check-'><label class='ff-el-form-check-label' for='checkbox_7ee8eb19e8919c2af9c56ff4f2d85128'><input  type=\"checkbox\" name=\"checkbox[]\" data-name=\"checkbox\" class=\"ff-el-form-check-input ff-el-form-check-checkbox\" value=\"Fri 11\"  id='checkbox_7ee8eb19e8919c2af9c56ff4f2d85128' aria-label='Fri|11' aria-invalid='false' aria-required=false> <span>Fri|11<\/span><\/label><\/div><div class='ff-el-form-check ff-el-form-check-'><label class='ff-el-form-check-label' for='checkbox_e2b0f2d4a3fe5783b6dee2472b56f62b'><input  type=\"checkbox\" name=\"checkbox[]\" data-name=\"checkbox\" class=\"ff-el-form-check-input ff-el-form-check-checkbox\" value=\"Sat 12\"  id='checkbox_e2b0f2d4a3fe5783b6dee2472b56f62b' aria-label='Sat|12' aria-invalid='false' aria-required=false> <span>Sat|12<\/span><\/label><\/div><div class='ff-el-form-check ff-el-form-check-'><label class='ff-el-form-check-label' for='checkbox_e2a615cd653a0191acedaec7461fcba7'><input  type=\"checkbox\" name=\"checkbox[]\" data-name=\"checkbox\" class=\"ff-el-form-check-input ff-el-form-check-checkbox\" value=\"Sun 13\"  id='checkbox_e2a615cd653a0191acedaec7461fcba7' aria-label='Sun|13' aria-invalid='false' aria-required=false> <span>Sun|13<\/span><\/label><\/div><\/div><\/div><div class='ff-el-group has-conditions'><div class=\"ff-el-input--label asterisk-right\"><label for='ff_3_input_text_1' id='label_ff_3_input_text_1' aria-label=\"Dietary Restrictions\">Dietary Restrictions<\/label><\/div><div class='ff-el-input--content'><input type=\"text\" name=\"input_text_1\" class=\"ff-el-form-control\" data-name=\"input_text_1\" id=\"ff_3_input_text_1\"  aria-invalid=\"false\" aria-required=false><\/div><\/div><div class='ff-el-group ff-text-center ff_submit_btn_wrapper'><button type=\"submit\" class=\"ff-btn ff-btn-submit ff-btn-md ff_btn_style\"  aria-label=\"Submit\">Submit<\/button><\/div><\/fieldset><\/form><div id='fluentform_3_errors' class='ff-errors-in-stack ff_form_instance_3_1 ff-form-loading_errors ff_form_instance_3_1_errors'><\/div><\/div>            <script type=\"text\/javascript\">\n                window.fluent_form_ff_form_instance_3_1 = {\"id\":\"3\",\"ajaxUrl\":\"https:\\\/\\\/jernobia.com\\\/wp-admin\\\/admin-ajax.php\",\"settings\":{\"layout\":{\"labelPlacement\":\"top\",\"asteriskPlacement\":\"asterisk-right\",\"helpMessagePlacement\":\"with_label\",\"errorMessagePlacement\":\"inline\",\"cssClassName\":\"\"},\"restrictions\":{\"denyEmptySubmission\":{\"enabled\":false}}},\"form_instance\":\"ff_form_instance_3_1\",\"form_id_selector\":\"fluentform_3\",\"rules\":{\"names[first_name]\":{\"required\":{\"value\":true,\"message\":\"This field is required\",\"global\":true,\"global_message\":\"This field is required\"}},\"names[middle_name]\":{\"required\":{\"value\":false,\"message\":\"This field is required\",\"global\":true,\"global_message\":\"This field is required\"}},\"names[last_name]\":{\"required\":{\"value\":false,\"message\":\"This field is required\",\"global\":true,\"global_message\":\"This field is required\"}},\"email\":{\"required\":{\"value\":true,\"message\":\"Email field is required\",\"global\":false,\"global_message\":\"This field is required\"},\"email\":{\"value\":true,\"message\":\"This field must contain a valid email\",\"global\":true,\"global_message\":\"This field must contain a valid email\"}},\"phone\":{\"required\":{\"value\":true,\"message\":\"Phone field is required\",\"global\":false,\"global_message\":\"This field is required\"},\"numeric\":{\"value\":true,\"message\":\"This field must contain numeric value\",\"global\":true,\"global_message\":\"This field must contain numeric value\"},\"min\":{\"value\":\"\",\"message\":\"Validation fails for minimum value\",\"global\":true,\"global_message\":\"Validation fails for minimum value\"},\"max\":{\"value\":\"\",\"message\":\"Validation fails for maximum value\",\"global\":true,\"global_message\":\"Validation fails for maximum value\"}},\"input_radio\":{\"required\":{\"value\":true,\"message\":\"This field is required\",\"global_message\":\"This field is required\",\"global\":true}},\"numeric_field\":{\"required\":{\"value\":true,\"message\":\"This field is required\",\"global_message\":\"This field is required\",\"global\":true},\"numeric\":{\"value\":true,\"message\":\"This field must contain numeric value\",\"global_message\":\"This field must contain numeric value\",\"global\":true},\"min\":{\"value\":\"0\",\"message\":\"Validation fails for minimum value\",\"global_message\":\"Validation fails for minimum value\",\"global\":true},\"max\":{\"value\":\"10\",\"message\":\"Validation fails for maximum value\",\"global_message\":\"Validation fails for maximum value\",\"global\":true},\"digits\":{\"value\":\"\",\"message\":\"Validation fails for limited digits\",\"global_message\":\"Validation fails for limited digits\",\"global\":true}},\"input_text\":{\"required\":{\"value\":false,\"message\":\"This field is required\",\"global_message\":\"This field is required\",\"global\":true}},\"input_radio_1\":{\"required\":{\"value\":true,\"message\":\"This field is required\",\"global_message\":\"This field is required\",\"global\":true}},\"checkbox\":{\"required\":{\"value\":false,\"message\":\"This field is required\",\"global_message\":\"This field is required\",\"global\":true}},\"input_text_1\":{\"required\":{\"value\":false,\"message\":\"This field is required\",\"global_message\":\"This field is required\",\"global\":true}}},\"debounce_time\":300,\"conditionals\":{\"numeric_field\":{\"type\":\"any\",\"status\":true,\"conditions\":[{\"field\":\"input_radio\",\"value\":\"Joyfully Accept\",\"operator\":\"=\"}],\"condition_groups\":[{\"rules\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}],\"title\":\"\",\"isEditingTitle\":false,\"isPreviewOpen\":false,\"isGroupOpen\":true}]},\"input_text\":{\"type\":\"any\",\"status\":true,\"conditions\":[{\"field\":\"input_radio\",\"value\":\"Joyfully Accept\",\"operator\":\"=\"}],\"condition_groups\":[{\"rules\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}],\"title\":\"\",\"isEditingTitle\":false,\"isPreviewOpen\":false,\"isGroupOpen\":true}]},\"input_radio_1\":{\"type\":\"any\",\"status\":true,\"conditions\":[{\"field\":\"input_radio\",\"value\":\"Joyfully Accept\",\"operator\":\"=\"}],\"condition_groups\":[{\"rules\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}],\"title\":\"\",\"isEditingTitle\":false,\"isPreviewOpen\":false,\"isGroupOpen\":true}]},\"checkbox\":{\"type\":\"any\",\"status\":true,\"conditions\":[{\"field\":\"input_radio_1\",\"value\":\"yes\",\"operator\":\"=\"}],\"condition_groups\":[{\"rules\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}],\"title\":\"\",\"isEditingTitle\":false,\"isPreviewOpen\":false,\"isGroupOpen\":true}]},\"input_text_1\":{\"type\":\"any\",\"status\":true,\"conditions\":[{\"field\":\"input_radio\",\"value\":\"Joyfully Accept\",\"operator\":\"=\"}],\"condition_groups\":[{\"rules\":[{\"field\":\"\",\"value\":\"\",\"operator\":\"\"}],\"title\":\"\",\"isEditingTitle\":false,\"isPreviewOpen\":false,\"isGroupOpen\":true}]}}};\n                            <\/script>\n                        <\/div>\n\n            <\/div>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-75735cd e-con-full elementor-hidden-desktop e-flex wcf-starter-animations-none e-con e-child\" data-id=\"75735cd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2a7b432 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"2a7b432\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7742fd8 e-con-full e-flex wcf-starter-animations-none e-con e-child\" data-id=\"7742fd8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-470aaec elementor-absolute e-transform artetaenvelopemobile wcf-starter-animations-none elementor-widget elementor-widget-image\" data-id=\"470aaec\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0.4,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"653\" height=\"685\" src=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/envelope-banner-mobile-v2-1.jpg\" class=\"attachment-large size-large wp-image-6438\" alt=\"\" srcset=\"https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/envelope-banner-mobile-v2-1.jpg 653w, https:\/\/jernobia.com\/wp-content\/uploads\/2026\/07\/envelope-banner-mobile-v2-1-286x300.jpg 286w\" sizes=\"(max-width: 653px) 100vw, 653px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-595aad1 no-sticker-trail e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"595aad1\" data-element_type=\"container\" data-e-type=\"container\" id=\"faq\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-456c898 reveal-letters wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"456c898\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Faq<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1060de8 reveal wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"1060de8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Faq<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ee8acc9 elementor-widget elementor-widget-html\" data-id=\"ee8acc9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"faq-accordion\">\r\n  <div class=\"faq-item\">\r\n    <button class=\"faq-question\" aria-expanded=\"false\">\r\n      <span class=\"faq-title\">What's the RSVP deadline?<\/span>\r\n      <span class=\"faq-icon\">\r\n        <img decoding=\"async\" src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/faqarrow.png\" alt=\"\" \/>\r\n      <\/span>\r\n    <\/button>\r\n    <div class=\"faq-answer\">\r\n      <div class=\"faq-answer-inner\">\r\n        <p>Kindly RSVP by <b><\/b>August 15, 2026<\/b>. Your timely response allows us to finalize seating arrangements and other important details to ensure a seamless celebration. If your plans change after submitting your RSVP, please reach out to us directly.<\/p>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n\r\n  <div class=\"faq-item\">\r\n    <button class=\"faq-question\" aria-expanded=\"false\">\r\n      <span class=\"faq-title\">Can I bring a plus one?<\/span>\r\n      <span class=\"faq-icon\">\r\n        <img decoding=\"async\" src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/faqarrow.png\" alt=\"\" \/>\r\n      <\/span>\r\n    <\/button>\r\n    <div class=\"faq-answer\">\r\n      <div class=\"faq-answer-inner\">\r\n        <p>Due to limited seating capacity, we are only able to accommodate the guest listed on your invitation. We truly appreciate your understanding. If you have any questions, please feel free to check with us.<\/p>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n\r\n  <div class=\"faq-item\">\r\n    <button class=\"faq-question\" aria-expanded=\"false\">\r\n      <span class=\"faq-title\">How should I arrange transportation?<\/span>\r\n      <span class=\"faq-icon\">\r\n        <img decoding=\"async\" src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/faqarrow.png\" alt=\"\" \/>\r\n      <\/span>\r\n    <\/button>\r\n    <div class=\"faq-answer\">\r\n      <div class=\"faq-answer-inner\">\r\n        <p>Since our wedding is in Phuket, Thailand, we recommend using Grab to get around the city. It\u2019s convenient and easy to use for traveling to and from the venue.<\/p>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n\r\n  <div class=\"faq-item\">\r\n    <button class=\"faq-question\" aria-expanded=\"false\">\r\n      <span class=\"faq-title\">Can you accommodate dietary restrictions or allergies?<\/span>\r\n      <span class=\"faq-icon\">\r\n        <img decoding=\"async\" src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/faqarrow.png\" alt=\"\" \/>\r\n      <\/span>\r\n    <\/button>\r\n    <div class=\"faq-answer\">\r\n      <div class=\"faq-answer-inner\">\r\n        <p>Absolutely. Please indicate any dietary restrictions or allergies on your RSVP and we'll make sure you're well taken care of.<\/p>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n\r\n  <div class=\"faq-item\">\r\n    <button class=\"faq-question\" aria-expanded=\"false\">\r\n      <span class=\"faq-title\">Is the wedding indoor or outdoor?<\/span>\r\n      <span class=\"faq-icon\">\r\n        <img decoding=\"async\" src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/faqarrow.png\" alt=\"\" \/>\r\n      <\/span>\r\n    <\/button>\r\n    <div class=\"faq-answer\">\r\n      <div class=\"faq-answer-inner\">\r\n        <p>Weather permitting, our ceremony and reception will take place outdoors. December in Phuket is typically warm and sunny by day, cooling down to a comfortable temperature at night.<\/p>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n  \r\n  <div class=\"faq-item\">\r\n    <button class=\"faq-question\" aria-expanded=\"false\">\r\n      <span class=\"faq-title\">Are there any plans for the day before the wedding?<\/span>\r\n      <span class=\"faq-icon\">\r\n        <img decoding=\"async\" src=\"https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/faqarrow.png\" alt=\"\" \/>\r\n      <\/span>\r\n    <\/button>\r\n    <div class=\"faq-answer\">\r\n      <div class=\"faq-answer-inner\">\r\n        <p>We haven\u2019t finalised anything for the day before the wedding just yet. If that changes , we\u2019ll be sure to share the details with everyone. If you\u2019ll be arriving in Phuket early, please feel free to let us know so we have an idea of who may already be there. In the meantime, please feel free to settle in and enjoy Phuket at your own pace<\/p>\r\n      <\/div>\r\n    <\/div>\r\n  <\/div>\r\n<\/div>\r\n\r\n<script>\r\n  document.querySelectorAll('.faq-accordion .faq-question').forEach(function(btn){\r\n    btn.addEventListener('click', function(){\r\n      var item = btn.closest('.faq-item');\r\n      var isOpen = item.classList.contains('open');\r\n\r\n      document.querySelectorAll('.faq-accordion .faq-item').forEach(function(i){\r\n        i.classList.remove('open');\r\n        i.querySelector('.faq-question').setAttribute('aria-expanded','false');\r\n      });\r\n\r\n      if(!isOpen){\r\n        item.classList.add('open');\r\n        btn.setAttribute('aria-expanded','true');\r\n      }\r\n    });\r\n  });\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-24c2d07 no-sticker-trail e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"24c2d07\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0120c6c wcf-starter-animations-none elementor-widget elementor-widget-heading\" data-id=\"0120c6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;wcf_starter_animations&quot;:&quot;none&quot;,&quot;wcf_anim_duration&quot;:1000,&quot;wcf_anim_delay&quot;:0,&quot;wcf_anim_ease&quot;:&quot;ease&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Confused? Curious? Can't contain your excitement? Reach out to Zenobia\/Jeremy and we\u2019ll sort you out!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1e137ab e-flex e-con-boxed wcf-starter-animations-none e-con e-parent\" data-id=\"1e137ab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-66df9c4 elementor-widget elementor-widget-html\" data-id=\"66df9c4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script src=\"https:\/\/cdn.jsdelivr.net\/gh\/studio-freight\/lenis@0.2.28\/bundled\/lenis.js\"><\/script>\r\n\r\n<script>\r\nlet lenis = null;\r\nlet rafId = null;\r\n\r\nfunction initLenis() {\r\n  if (lenis) return;\r\n\r\n  lenis = new Lenis({\r\n    duration: 1.4,\r\n    easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),\r\n    direction: 'vertical',\r\n    gestureDirection: 'vertical',\r\n    smooth: true,\r\n    mouseMultiplier: 1,\r\n    smoothTouch: false,\r\n    touchMultiplier: 2,\r\n    infinite: false,\r\n  });\r\n\r\n  function raf(time) {\r\n    if (!lenis) return;\r\n    lenis.raf(time);\r\n    rafId = requestAnimationFrame(raf);\r\n  }\r\n  rafId = requestAnimationFrame(raf);\r\n}\r\n\r\nfunction destroyLenis() {\r\n  if (rafId) {\r\n    cancelAnimationFrame(rafId);\r\n    rafId = null;\r\n  }\r\n  if (lenis) {\r\n    lenis.destroy();\r\n    lenis = null;\r\n  }\r\n}\r\n\r\nfunction handleLenis() {\r\n  if (window.innerWidth >= 1024) {\r\n    initLenis();\r\n  } else {\r\n    destroyLenis();\r\n  }\r\n}\r\n\r\n\/\/ Handle anchor clicks (works whether Lenis is active or not)\r\ndocument.addEventListener('click', (e) => {\r\n  const link = e.target.closest('a[href^=\"#\"]');\r\n  if (!link) return;\r\n\r\n  const href = link.getAttribute('href');\r\n  if (!href || href === '#') return;\r\n\r\n  const target = document.querySelector(href);\r\n  if (!target) return;\r\n\r\n  e.preventDefault();\r\n\r\n  if (lenis) {\r\n    \/\/ Lenis is active \u2192 use its smooth scroll\r\n    lenis.scrollTo(target, {\r\n      offset: 0,        \/\/ adjust if you have a fixed header (e.g., -80)\r\n      duration: 1.2,\r\n      easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),\r\n    });\r\n  } else {\r\n    \/\/ Mobile \/ Lenis disabled \u2192 fallback to native smooth scroll\r\n    target.scrollIntoView({ behavior: 'smooth' });\r\n  }\r\n});\r\n\r\nhandleLenis();\r\n\r\nlet resizeTimer;\r\nwindow.addEventListener('resize', () => {\r\n  clearTimeout(resizeTimer);\r\n  resizeTimer = setTimeout(handleLenis, 200);\r\n});\r\n<\/script>\r\n\r\n<style>\r\n  html {\r\n    scroll-behavior: auto !important;\r\n  }\r\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aff2569 elementor-widget elementor-widget-html\" data-id=\"aff2569\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\ndocument.addEventListener('DOMContentLoaded', function () {\r\n  const backdrop = document.createElement('div');\r\n  backdrop.className = 'polaroid-backdrop';\r\n  document.body.appendChild(backdrop);\r\n\r\n  const polaroids = document.querySelectorAll('.polaroid-pickup');\r\n  let active = null;\r\n  const TRANSITION_MS = 700;\r\n\r\n  function computePickupTransform(el) {\r\n    const prev = el.style.transform;\r\n    el.style.transition = 'none';\r\n    el.style.transform = 'none';\r\n    const rect = el.getBoundingClientRect();\r\n    el.style.transform = prev;\r\n    void el.offsetWidth;\r\n    el.style.transition = '';\r\n\r\n    const elCenterX = rect.left + rect.width \/ 2;\r\n    const elCenterY = rect.top + rect.height \/ 2;\r\n    const vpCenterX = window.innerWidth \/ 2;\r\n    const vpCenterY = window.innerHeight \/ 2;\r\n\r\n    const maxW = window.innerWidth * 0.85;\r\n    const maxH = window.innerHeight * 0.85;\r\n    const scale = Math.min(maxW \/ rect.width, maxH \/ rect.height, 2.6);\r\n\r\n    return `translate(${vpCenterX - elCenterX}px, ${vpCenterY - elCenterY}px) scale(${scale})`;\r\n  }\r\n\r\n  function pickUp(el) {\r\n    if (active && active !== el) putDown(active, true);\r\n    el.classList.add('is-active', 'is-picked-up');\r\n    el.style.transform = computePickupTransform(el);\r\n    backdrop.classList.add('active');\r\n    document.body.classList.add('no-scroll');\r\n    active = el;\r\n  }\r\n\r\n  function putDown(el, immediate) {\r\n    el.classList.remove('is-picked-up');\r\n    el.style.transform = '';\r\n    backdrop.classList.remove('active');\r\n    document.body.classList.remove('no-scroll');\r\n    if (active === el) active = null;\r\n    if (immediate) {\r\n      el.classList.remove('is-active');\r\n    } else {\r\n      if (el._zTimer) clearTimeout(el._zTimer);\r\n      el._zTimer = setTimeout(() => el.classList.remove('is-active'), TRANSITION_MS);\r\n    }\r\n  }\r\n\r\n  polaroids.forEach(el => {\r\n    el.addEventListener('click', function (e) {\r\n      e.stopPropagation();\r\n      el.classList.contains('is-picked-up') ? putDown(el) : pickUp(el);\r\n    });\r\n  });\r\n\r\n  backdrop.addEventListener('click', () => active && putDown(active));\r\n  document.addEventListener('keydown', e => e.key === 'Escape' && active && putDown(active));\r\n\r\n  window.addEventListener('resize', function () {\r\n    if (active) {\r\n      active.style.transition = 'none';\r\n      active.style.transform = computePickupTransform(active);\r\n      void active.offsetWidth;\r\n      active.style.transition = '';\r\n    }\r\n  });\r\n});\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1e393bc elementor-widget elementor-widget-html\" data-id=\"1e393bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\n  (function () {\r\n    const pinkBg = document.querySelector('.pinkbg');\r\n    const mouseInteract = document.querySelector('.mouse-interact');\r\n    const mouseSection = mouseInteract ? mouseInteract.parentElement : null;\r\n\r\n    const fadeOutScrollEls = Array.from(document.querySelectorAll('.fade-out-scroll'))\r\n      .map(el => ({ el, section: el.parentElement }));\r\n\r\n    if (!pinkBg) console.warn('[pinkbg] element not found');\r\n    if (!mouseInteract) console.warn('[mouse-interact] element not found');\r\n    if (fadeOutScrollEls.length === 0) console.warn('[fade-out-scroll] no elements found');\r\n\r\n    function is1080pDesktop() {\r\n      const w = window.screen.width;\r\n      const h = window.screen.height;\r\n      const dpr = window.devicePixelRatio || 1;\r\n\r\n      if (dpr > 1.25) return false;\r\n\r\n      const is1920 = w <= 2000;\r\n      const is1080 = h <= 1120;\r\n\r\n      const isTouch = ('ontouchstart' in window) || navigator.maxTouchPoints > 0;\r\n      if (isTouch) return false;\r\n\r\n      return is1920 && is1080;\r\n    }\r\n\r\n    function updatePinkBg() {\r\n      if (!pinkBg) return;\r\n      const rect = pinkBg.getBoundingClientRect();\r\n      const vh = window.innerHeight;\r\n\r\n      const scrolled = vh - rect.top;\r\n      const total = vh * 0.7;\r\n      const progress = Math.max(0, Math.min(1, scrolled \/ total));\r\n\r\n      pinkBg.style.width = (50 + progress * 50) + '%';\r\n      pinkBg.style.filter = 'blur(' + (100 * (1 - progress)) + 'px)';\r\n    }\r\n\r\n    function updateMouseInteract() {\r\n      if (!mouseInteract || !mouseSection) return;\r\n\r\n      const sectionRect = mouseSection.getBoundingClientRect();\r\n      const vh = window.innerHeight;\r\n      const fadeDistance = vh * 0.65;\r\n      const distanceToEnd = sectionRect.bottom - vh;\r\n\r\n      let opacity = 1;\r\n      if (distanceToEnd <= fadeDistance) {\r\n        opacity = Math.max(0, Math.min(1, distanceToEnd \/ fadeDistance));\r\n      }\r\n\r\n      mouseInteract.style.opacity = opacity;\r\n    }\r\n\r\n    function updateFadeOutScroll() {\r\n      if (fadeOutScrollEls.length === 0) return;\r\n\r\n      if (!is1080pDesktop()) {\r\n        fadeOutScrollEls.forEach(({ el }) => {\r\n          if (!el) return;\r\n          el.style.opacity = '';\r\n          el.style.filter = '';\r\n        });\r\n        return;\r\n      }\r\n\r\n      const vh = window.innerHeight;\r\n      const fadeStart  = vh * 0.5;\r\n      const fadeLength = vh * 0.40;\r\n      const maxBlur    = 20;\r\n\r\n      fadeOutScrollEls.forEach(({ el, section }) => {\r\n        if (!el || !section) return;\r\n\r\n        const sectionRect = section.getBoundingClientRect();\r\n        const distanceToEnd = sectionRect.bottom - vh;\r\n\r\n        let opacity = 1;\r\n        let progress = 0;\r\n        if (distanceToEnd <= fadeStart) {\r\n          progress = (fadeStart - distanceToEnd) \/ fadeLength;\r\n          progress = Math.max(0, Math.min(1, progress));\r\n          opacity = 1 - progress;\r\n        }\r\n\r\n        el.style.opacity = opacity;\r\n        el.style.filter = 'blur(' + (maxBlur * progress) + 'px)';\r\n      });\r\n    }\r\n\r\n    function updateAll() {\r\n      updatePinkBg();\r\n      updateMouseInteract();\r\n      updateFadeOutScroll();\r\n    }\r\n\r\n    let ticking = false;\r\n    function onScroll() {\r\n      if (!ticking) {\r\n        requestAnimationFrame(() => {\r\n          updateAll();\r\n          ticking = false;\r\n        });\r\n        ticking = true;\r\n      }\r\n    }\r\n\r\n    window.addEventListener('scroll', onScroll, { passive: true });\r\n    window.addEventListener('resize', updateAll);\r\n    window.addEventListener('load', updateAll);\r\n    updateAll();\r\n  })();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3652402 elementor-widget elementor-widget-html\" data-id=\"3652402\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\n(function () {\r\n  const SELECTOR = '.reveal';\r\n  const VISIBLE_CLASS = 'is-visible';\r\n  const THRESHOLD = 0.125;\r\n  const ROOT_MARGIN = '0px 0px -50px 0px';\r\n  const MOBILE_BREAKPOINT = 1024.1;\r\n\r\n  const isMobile = () => window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT}px)`).matches;\r\n\r\n  let initialized = false;\r\n\r\n  const init = () => {\r\n    if (initialized) return;\r\n    initialized = true;\r\n\r\n    const elements = document.querySelectorAll(SELECTOR);\r\n    if (!elements.length) return;\r\n\r\n    if (!('IntersectionObserver' in window)) {\r\n      elements.forEach(el => el.classList.add(VISIBLE_CLASS));\r\n      return;\r\n    }\r\n\r\n    const observer = new IntersectionObserver((entries, obs) => {\r\n      entries.forEach(entry => {\r\n        const el = entry.target;\r\n        const delay = el.dataset.delay || 0;\r\n\r\n        if (entry.isIntersecting) {\r\n          setTimeout(() => el.classList.add(VISIBLE_CLASS), delay);\r\n          if (isMobile()) obs.unobserve(el);\r\n        } else if (!isMobile()) {\r\n          el.classList.remove(VISIBLE_CLASS);\r\n        }\r\n      });\r\n    }, { threshold: THRESHOLD, rootMargin: ROOT_MARGIN });\r\n\r\n    elements.forEach(el => observer.observe(el));\r\n  };\r\n\r\n  \/\/ Loader is \"done\" when the body class is gone AND the flag is set (or no loader exists)\r\nconst isLoaderDone = () => {\r\n  const loaderEl = document.getElementById('jernobia-loader');\r\n  if (!loaderEl) return true;                              \/\/ no loader on this page\r\n  if (window.jernobiaLoaderDone) return true;              \/\/ explicit completion flag\r\n  if (loaderEl.classList.contains('hidden')) return true;  \/\/ loader has started finishing\r\n  return false;\r\n};\r\n\r\n  let safetyTimer = 0;\r\n  const MAX_WAIT = 12000; \/\/ 12s absolute fail-safe\r\n\r\n  const waitForLoader = () => {\r\n    if (isLoaderDone()) {\r\n      init();\r\n      return;\r\n    }\r\n    safetyTimer += 100;\r\n    if (safetyTimer >= MAX_WAIT) {\r\n      init();\r\n      return;\r\n    }\r\n    setTimeout(waitForLoader, 100);\r\n  };\r\n\r\n  const start = () => {\r\n    \/\/ Also listen for the event in case it fires while we're polling\r\n    window.addEventListener('jernobia:loaded', init, { once: true });\r\n    waitForLoader();\r\n  };\r\n\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', start);\r\n  } else {\r\n    start();\r\n  }\r\n\r\n  if (window.elementorFrontend) {\r\n    window.addEventListener('elementor\/frontend\/init', () => {\r\n      \/\/ re-scan if Elementor injects new content\r\n      if (initialized) return;\r\n      start();\r\n    });\r\n  }\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d5e49a7 elementor-widget elementor-widget-html\" data-id=\"d5e49a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\r\n.reveal-letters,\r\n.reveal-words,\r\n.reveal-lines,\r\n.reveal-typewriter {\r\n    --reveal-duration: .1s;\r\n    --reveal-offset: 24px;\r\n    --reveal-stagger: 40ms;\r\n    --reveal-delay: 0s;\r\n    --reveal-easing: cubic-bezier(0.65, 0, 0.35, 1);\r\n}\r\n\r\n\/* Safety net: hide text until it's been split into .ri spans (data-rv set by init).\r\n   Once init runs, [data-rv] is present and per-character .ri opacity takes over. *\/\r\n.reveal-letters:not([data-rv]),\r\n.reveal-words:not([data-rv]),\r\n.reveal-lines:not([data-rv]),\r\n.reveal-typewriter:not([data-rv]) {\r\n    opacity: 0;\r\n}\r\n\r\n.rp {\r\n    display: inline-block;\r\n    vertical-align: top;\r\n}\r\n\r\n.reveal-lines-target .rp {\r\n    display: block;\r\n}\r\n\r\n.ri {\r\n    display: inline-block;\r\n    transform: translate3d(0, var(--reveal-offset, 24px), 0);\r\n    opacity: 0;\r\n    will-change: transform, opacity;\r\n    transition:\r\n        transform var(--reveal-duration, .1s) var(--reveal-easing, cubic-bezier(.22, 1, .36, 1)) var(--d, 0s),\r\n        opacity var(--reveal-duration, .7s) var(--reveal-easing, cubic-bezier(0.65, 0, 0.35, 1)) var(--d, 0s);\r\n}\r\n\r\n.is-in .ri {\r\n    transform: translate3d(0, 0, 0);\r\n    opacity: 1;\r\n}\r\n\r\n.rs {\r\n    display: inline-block;\r\n    width: .25em;\r\n}\r\n\r\n.reveal-fast {\r\n    --reveal-duration: .45s;\r\n    --reveal-stagger: 25ms;\r\n}\r\n\r\n.reveal-slow {\r\n    --reveal-duration: 1.2s;\r\n    --reveal-stagger: 70ms;\r\n}\r\n\r\n.reveal-offset-sm {\r\n    --reveal-offset: 10px;\r\n}\r\n\r\n.reveal-offset-lg {\r\n    --reveal-offset: 60px;\r\n}\r\n\r\n.reveal-stagger-tight {\r\n    --reveal-stagger: 15ms;\r\n}\r\n\r\n.reveal-stagger-loose {\r\n    --reveal-stagger: 90ms;\r\n}\r\n\r\n\/* Typewriter \u2014 reserve full layout up front so container doesn't grow as text types *\/\r\n.reveal-typewriter .tw-char {\r\n    visibility: hidden;\r\n}\r\n\r\n.reveal-typewriter .tw-char.tw-on {\r\n    visibility: visible;\r\n}\r\n\r\n\/* <br>s remain in flow so multi-line height is reserved from the start *\/\r\n.reveal-typewriter .tw-caret {\r\n    display: inline-block;\r\n    margin-left: 2px;\r\n    font-weight: inherit;\r\n    color: inherit;\r\n    animation: tw-blink 1s steps(1) infinite;\r\n}\r\n\r\n.reveal-typewriter.tw-done .tw-caret {\r\n    animation: none;\r\n    opacity: 0;\r\n    transition: opacity .4s;\r\n}\r\n\r\n.reveal-typewriter.tw-caret-persist.tw-done .tw-caret {\r\n    opacity: 1;\r\n    animation: tw-blink 1s steps(1) infinite;\r\n}\r\n\r\n@keyframes tw-blink {\r\n    50% {\r\n        opacity: 0;\r\n    }\r\n}\r\n\r\n@media (prefers-reduced-motion: reduce) {\r\n    .ri {\r\n        transform: none !important;\r\n        opacity: 1 !important;\r\n        transition: none !important;\r\n    }\r\n\r\n    .reveal-typewriter .tw-char {\r\n        visibility: visible !important;\r\n    }\r\n\r\n    .reveal-typewriter .tw-caret {\r\n        animation: none !important;\r\n        opacity: 0 !important;\r\n    }\r\n}\r\n\r\n\/* Disable features that misbehave once letters are in separate boxes *\/\r\n.reveal-letters [data-rv],\r\n.reveal-letters .rp,\r\n.reveal-letters .ri {\r\n    font-kerning: none;\r\n    font-variant-ligatures: none;\r\n    font-feature-settings: \"kern\" 0, \"liga\" 0, \"clig\" 0, \"dlig\" 0;\r\n}\r\n\r\n\/* Make sure italic\/oblique side-bearings are never clipped, and\r\n   give each letter a tiny breathing buffer that compensates for the\r\n   lost kerning + sub-pixel transform rounding. The negative margin\r\n   keeps the visible spacing identical to the original. *\/\r\n.reveal-letters .rp,\r\n.reveal-letters .ri {\r\n    overflow: visible;\r\n}\r\n\r\n.reveal-letters .ri {\r\n    padding-right: 0.02em;\r\n    margin-right: -0.02em;\r\n    \/* Stabilize transform rendering across devices *\/\r\n    backface-visibility: hidden;\r\n    -webkit-backface-visibility: hidden;\r\n}\r\n\r\n\/* For headings that are actually italic, give a slightly larger\r\n   buffer so the right side-bearing of f\/j\/y doesn't get covered. *\/\r\n.reveal-letters em .ri,\r\n.reveal-letters i .ri,\r\n.reveal-letters[style*=\"italic\"] .ri,\r\nem.reveal-letters .ri,\r\ni.reveal-letters .ri {\r\n    padding-right: 0.06em;\r\n    margin-right: -0.06em;\r\n}\r\n\r\n\/* If the heading uses negative letter-spacing, neutralize it on the\r\n   character spans (the inter-letter gap is already controlled by the\r\n   inline-block layout, so the original negative tracking will\r\n   over-compress). Re-apply it via .rp instead, which respects\r\n   inline-block edges cleanly. *\/\r\n.reveal-letters .ri {\r\n    letter-spacing: 0;\r\n}\r\n<\/style>\r\n\r\n<script>\r\n(function () {\r\n    var SEL = '.reveal-letters,.reveal-words,.reveal-lines,.reveal-typewriter';\r\n    var ioRef = null;\r\n    var lastWidth = window.innerWidth;\r\n\r\n    function findTarget(el) {\r\n        var inner = el.querySelector('h1,h2,h3,h4,h5,h6,p,.elementor-heading-title');\r\n        if (inner && inner.textContent.trim()) return inner;\r\n        return el;\r\n    }\r\n\r\n    function getMode(el) {\r\n        if (el.classList.contains('reveal-letters')) return 'letters';\r\n        if (el.classList.contains('reveal-words')) return 'words';\r\n        if (el.classList.contains('reveal-lines')) return 'lines';\r\n        if (el.classList.contains('reveal-typewriter')) return 'typewriter';\r\n        return null;\r\n    }\r\n\r\n    function makeInner(content, i, asHTML) {\r\n        var wrap = document.createElement('span');\r\n        wrap.className = 'rp';\r\n        var inner = document.createElement('span');\r\n        inner.className = 'ri';\r\n        inner.style.setProperty('--d', 'calc(var(--reveal-delay, 0s) + ' + i + ' * var(--reveal-stagger, 40ms))');\r\n        if (asHTML) inner.innerHTML = content;\r\n        else inner.textContent = content;\r\n        wrap.appendChild(inner);\r\n        return wrap;\r\n    }\r\n\r\n    function walkAndSplit(root, mode, counter) {\r\n        var children = Array.prototype.slice.call(root.childNodes);\r\n        for (var i = 0; i < children.length; i++) {\r\n            var node = children[i];\r\n            if (node.nodeType === 3) {\r\n                var text = node.nodeValue;\r\n                if (!text) continue;\r\n                var frag = document.createDocumentFragment();\r\n                if (mode === 'letters') {\r\n                    for (var c = 0; c < text.length; c++) {\r\n                        var ch = text[c];\r\n                        if (\/\\s\/.test(ch)) {\r\n                            var s = document.createElement('span');\r\n                            s.className = 'rs';\r\n                            frag.appendChild(s);\r\n                        } else {\r\n                            frag.appendChild(makeInner(ch, counter.i++));\r\n                        }\r\n                    }\r\n                } else {\r\n                    var parts = text.split(\/(\\s+)\/);\r\n                    for (var p = 0; p < parts.length; p++) {\r\n                        if (!parts[p]) continue;\r\n                        if (\/^\\s+$\/.test(parts[p])) {\r\n                            frag.appendChild(document.createTextNode(' '));\r\n                        } else {\r\n                            frag.appendChild(makeInner(parts[p], counter.i++));\r\n                        }\r\n                    }\r\n                }\r\n                node.parentNode.replaceChild(frag, node);\r\n            } else if (node.nodeType === 1 && node.tagName !== 'BR') {\r\n                walkAndSplit(node, mode, counter);\r\n            }\r\n        }\r\n    }\r\n\r\n    function splitLetters(target) {\r\n        walkAndSplit(target, 'letters', { i: 0 });\r\n    }\r\n\r\n    function splitWords(target) {\r\n        walkAndSplit(target, 'words', { i: 0 });\r\n    }\r\n\r\n    function splitLines(target) {\r\n        target.classList.add('reveal-lines-target');\r\n        var items = [];\r\n\r\n        function wrap(node) {\r\n            var children = Array.prototype.slice.call(node.childNodes);\r\n            for (var i = 0; i < children.length; i++) {\r\n                var n = children[i];\r\n                if (n.nodeType === 3) {\r\n                    var text = n.nodeValue;\r\n                    if (!text || !text.replace(\/\\s\/g, '')) continue;\r\n                    var parts = text.split(\/(\\s+)\/);\r\n                    var frag = document.createDocumentFragment();\r\n                    for (var p = 0; p < parts.length; p++) {\r\n                        if (!parts[p]) continue;\r\n                        if (\/^\\s+$\/.test(parts[p])) {\r\n                            frag.appendChild(document.createTextNode(' '));\r\n                        } else {\r\n                            var ws = document.createElement('span');\r\n                            ws.style.display = 'inline-block';\r\n                            ws.textContent = parts[p];\r\n                            frag.appendChild(ws);\r\n                            items.push({ span: ws });\r\n                        }\r\n                    }\r\n                    n.parentNode.replaceChild(frag, n);\r\n                } else if (n.nodeType === 1) {\r\n                    if (n.tagName === 'BR') {\r\n                        items.push({ br: true });\r\n                    } else {\r\n                        wrap(n);\r\n                    }\r\n                }\r\n            }\r\n        }\r\n\r\n        wrap(target);\r\n\r\n        var lines = [], current = [], lastTop = null;\r\n        for (var i = 0; i < items.length; i++) {\r\n            var it = items[i];\r\n            if (it.br) {\r\n                lines.push(current);\r\n                current = [];\r\n                lastTop = null;\r\n                continue;\r\n            }\r\n            var top = it.span.offsetTop;\r\n            if (lastTop === null || top === lastTop) {\r\n                current.push(it.span);\r\n            } else {\r\n                lines.push(current);\r\n                current = [it.span];\r\n            }\r\n            lastTop = top;\r\n        }\r\n        if (current.length) lines.push(current);\r\n\r\n        var lineHTMLs = [];\r\n        for (var L = 0; L < lines.length; L++) {\r\n            var line = lines[L];\r\n            if (!line.length) {\r\n                lineHTMLs.push('&nbsp;');\r\n                continue;\r\n            }\r\n            var range = document.createRange();\r\n            range.setStartBefore(line[0]);\r\n            range.setEndAfter(line[line.length - 1]);\r\n            var clone = range.cloneContents();\r\n            var tmp = document.createElement('div');\r\n            tmp.appendChild(clone);\r\n            lineHTMLs.push(tmp.innerHTML);\r\n        }\r\n\r\n        target.innerHTML = '';\r\n        for (var L2 = 0; L2 < lineHTMLs.length; L2++) {\r\n            target.appendChild(makeInner(lineHTMLs[L2], L2, true));\r\n        }\r\n    }\r\n\r\n    \/\/ ---- Typewriter (preserves <br>, <i>, <b>, <em>, <strong>, <span>, etc.) ----\r\n    function splitTypewriter(node) {\r\n        var children = Array.prototype.slice.call(node.childNodes);\r\n        for (var i = 0; i < children.length; i++) {\r\n            var n = children[i];\r\n            if (n.nodeType === 3) {\r\n                var text = n.nodeValue;\r\n                if (!text) continue;\r\n                var frag = document.createDocumentFragment();\r\n                for (var c = 0; c < text.length; c++) {\r\n                    var span = document.createElement('span');\r\n                    span.className = 'tw-char';\r\n                    \/\/ Preserve whitespace (spaces, newlines) so they collapse naturally\r\n                    span.textContent = text[c];\r\n                    frag.appendChild(span);\r\n                }\r\n                n.parentNode.replaceChild(frag, n);\r\n            } else if (n.nodeType === 1) {\r\n                if (n.tagName === 'BR') {\r\n                    n.classList.add('tw-br');\r\n                } else {\r\n                    splitTypewriter(n);\r\n                }\r\n            }\r\n        }\r\n    }\r\n\r\n    function setupTypewriter(el) {\r\n        var target = findTarget(el);\r\n        splitTypewriter(target);\r\n    \r\n        \/\/ Append caret at the end of the heading element\r\n        var showCaret = el.dataset.twCaret !== 'false';\r\n        if (showCaret) {\r\n            var caret = document.createElement('span');\r\n            caret.className = 'tw-caret';\r\n            caret.setAttribute('aria-hidden', 'true');\r\n            caret.textContent = '|';\r\n            \/\/ Keep the caret hidden from the moment it's created, so its blink\r\n            \/\/ doesn't appear at the final end-of-sentence position before typing\r\n            \/\/ begins. runTypewriter() clears this when the first char is revealed.\r\n            caret.style.visibility = 'hidden';\r\n            target.appendChild(caret);\r\n        }\r\n    \r\n        if (el.dataset.twCaretPersist === 'true') el.classList.add('tw-caret-persist');\r\n    }\r\n\r\n    function gatherTypewriterNodes(root) {\r\n        var out = [];\r\n        (function walk(node) {\r\n            var children = node.childNodes;\r\n            for (var i = 0; i < children.length; i++) {\r\n                var n = children[i];\r\n                if (n.nodeType !== 1) continue;\r\n                if (n.classList.contains('tw-caret')) continue;\r\n                if (n.classList.contains('tw-char')) {\r\n                    out.push(n);\r\n                } else if (n.tagName === 'BR' && n.classList.contains('tw-br')) {\r\n                    out.push(n);\r\n                } else {\r\n                    walk(n);\r\n                }\r\n            }\r\n        })(root);\r\n        return out;\r\n    }\r\n\r\n    function runTypewriter(el) {\r\n        if (el.dataset.twPlayed) return;\r\n        el.dataset.twPlayed = 1;\r\n\r\n        var target = findTarget(el);\r\n        var nodes = gatherTypewriterNodes(target);\r\n        var caret = target.querySelector('.tw-caret');\r\n\r\n        \/\/ Reduced motion: reveal everything immediately\r\n        if (window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches) {\r\n            for (var i = 0; i < nodes.length; i++) nodes[i].classList.add('tw-on');\r\n            el.classList.add('tw-done', 'is-in');\r\n            return;\r\n        }\r\n\r\n        \/\/ Hide caret until first char is revealed so it doesn't show at the final end position\r\n        if (caret) caret.style.visibility = 'hidden';\r\n\r\n        el.classList.add('is-in');\r\n\r\n        var speed = parseInt(el.dataset.twSpeed, 10) || 55;\r\n        var jitter = parseInt(el.dataset.twJitter, 10) || 0;\r\n        var startDelay = parseInt(el.dataset.twDelay, 10) || 0;\r\n        var brPause = parseInt(el.dataset.twBrPause, 10);\r\n        if (isNaN(brPause)) brPause = 180; \/\/ small extra pause after a line break\r\n\r\n        var idx = 0;\r\n\r\n        function tick() {\r\n            if (idx < nodes.length) {\r\n                var n = nodes[idx];\r\n                n.classList.add('tw-on');\r\n                \/\/ Move caret to right after the just-revealed node so it tracks typing position\r\n                if (caret && n.parentNode) {\r\n                    if (caret.style.visibility) caret.style.visibility = '';\r\n                    n.parentNode.insertBefore(caret, n.nextSibling);\r\n                }\r\n                idx++;\r\n                var isBr = n.tagName === 'BR';\r\n                var t = (isBr ? brPause : speed) + (jitter ? Math.random() * jitter : 0);\r\n                setTimeout(tick, t);\r\n            } else {\r\n                el.classList.add('tw-done');\r\n            }\r\n        }\r\n\r\n        setTimeout(tick, startDelay);\r\n    }\r\n\r\n    function init(el) {\r\n        if (el.dataset.rv) return;\r\n        el.dataset.rv = 1;\r\n\r\n        var target = findTarget(el);\r\n        if (!el.dataset.rvOriginal) el.dataset.rvOriginal = target.innerHTML;\r\n\r\n        var mode = getMode(el);\r\n        el.dataset.rvMode = mode;\r\n\r\n        if (mode === 'letters') splitLetters(target);\r\n        else if (mode === 'words') splitWords(target);\r\n        else if (mode === 'lines') splitLines(target);\r\n        else if (mode === 'typewriter') setupTypewriter(el);\r\n    }\r\n\r\n    function trigger(el) {\r\n        if (el.dataset.rvMode === 'typewriter') runTypewriter(el);\r\n        else el.classList.add('is-in');\r\n    }\r\n\r\n    \/\/ Setup only: splits text into hidden .ri spans (applies the start state)\r\n    function initAll() {\r\n        var els = document.querySelectorAll(SEL);\r\n        for (var i = 0; i < els.length; i++) init(els[i]);\r\n        return els;\r\n    }\r\n\r\n    \/\/ Trigger only: starts observing for reveals (assumes init already ran)\r\n    function observeAll(els) {\r\n        if (!els || !els.length) return;\r\n\r\n        if (!('IntersectionObserver' in window)) {\r\n            for (var j = 0; j < els.length; j++) trigger(els[j]);\r\n            return;\r\n        }\r\n\r\n        ioRef = new IntersectionObserver(function (entries) {\r\n            for (var k = 0; k < entries.length; k++) {\r\n                if (entries[k].isIntersecting) {\r\n                    trigger(entries[k].target);\r\n                    ioRef.unobserve(entries[k].target);\r\n                }\r\n            }\r\n        }, { threshold: .15, rootMargin: '0px 0px -15% 0px' });\r\n\r\n        for (var m = 0; m < els.length; m++) ioRef.observe(els[m]);\r\n    }\r\n\r\n    var resizeTimer;\r\n    window.addEventListener('resize', function () {\r\n        if (window.innerWidth === lastWidth) return;\r\n        lastWidth = window.innerWidth;\r\n        clearTimeout(resizeTimer);\r\n        resizeTimer = setTimeout(function () {\r\n            var lineEls = document.querySelectorAll('.reveal-lines[data-rv]');\r\n            for (var i = 0; i < lineEls.length; i++) {\r\n                var el = lineEls[i];\r\n                var target = findTarget(el);\r\n                target.classList.remove('reveal-lines-target');\r\n                target.innerHTML = el.dataset.rvOriginal || target.innerHTML;\r\n                el.removeAttribute('data-rv');\r\n                var wasIn = el.classList.contains('is-in');\r\n                el.classList.remove('is-in');\r\n                init(el);\r\n                var rect = el.getBoundingClientRect();\r\n                var inView = rect.top < window.innerHeight && rect.bottom > 0;\r\n                if (wasIn || inView) {\r\n                    el.classList.add('is-in');\r\n                } else if (ioRef) {\r\n                    ioRef.observe(el);\r\n                }\r\n            }\r\n        }, 200);\r\n    });\r\n\r\n    \/\/ ----- Setup: apply the hidden start state immediately (behind the loader) -----\r\n    function setupEarly() {\r\n        if (document.fonts && document.fonts.ready) {\r\n            document.fonts.ready.then(initAll);\r\n        } else if (document.readyState === 'loading') {\r\n            document.addEventListener('DOMContentLoaded', initAll);\r\n        } else {\r\n            initAll();\r\n        }\r\n    }\r\n\r\n    \/\/ ----- Trigger: begin revealing once the loader is done -----\r\n    function startReveals() {\r\n        var els = document.querySelectorAll(SEL);\r\n        \/\/ Ensure everything is initialized (covers the late-load race)\r\n        for (var i = 0; i < els.length; i++) init(els[i]);\r\n        observeAll(els);\r\n    }\r\n\r\n    \/\/ 1) Lock in the hidden start state now, so there's no end-state flash\r\n    setupEarly();\r\n\r\n    \/\/ 2) Wait for the loader before actually triggering reveals\r\n    if (window.jernobiaLoaderDone) {\r\n        \/\/ Loader already finished (e.g. reveal script loaded late)\r\n        startReveals();\r\n    } else {\r\n        var started = false;\r\n        function go() {\r\n            if (started) return;\r\n            started = true;\r\n            startReveals();\r\n        }\r\n        window.addEventListener('jernobia:loaded', go, { once: true });\r\n\r\n        \/\/ Fallback: if this page has no loader, or the event never fires,\r\n        \/\/ don't leave text hidden forever.\r\n        setTimeout(go, 11000); \/\/ longer than the loader's 10s safety timeout\r\n    }\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-578688a elementor-widget elementor-widget-html\" data-id=\"578688a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\r\n  #stickerTrailLayer {\r\n    position: absolute;\r\n    top: 0;\r\n    left: 0;\r\n    width: 100%;\r\n    height: 0;\r\n    overflow: visible;\r\n    pointer-events: none;\r\n    z-index: 2147483647;\r\n  }\r\n  #stickerTrailLayer .sticker {\r\n    position: absolute;\r\n    will-change: transform, opacity;\r\n    user-select: none;\r\n    pointer-events: none;\r\n    transform-origin: center center;\r\n  }\r\n  #stickerTrailLayer .sticker img {\r\n    display: block;\r\n    width: clamp(80px, 5vw, 128px);   \/* fluid: 8rem at 2560px, floored at 70px *\/\r\n    height: auto;\r\n    pointer-events: none;\r\n    user-select: none;\r\n    -webkit-user-drag: none;\r\n  }\r\n<\/style>\r\n\r\n<div class=\"sticker-trail-layer\" id=\"stickerTrailLayer\"><\/div>\r\n\r\n<script>\r\n(function () {\r\n  if (window.__stickerTrailInit) return;\r\n  window.__stickerTrailInit = true;\r\n\r\n  function startStickerTrail() {\r\n    var hasHover = window.matchMedia('(hover: hover) and (pointer: fine)').matches;\r\n    if (!hasHover) return;\r\n\r\n    var stage = document.getElementById('stickerTrailLayer');\r\n    if (!stage) return;\r\n\r\n    var bodyPos = getComputedStyle(document.body).position;\r\n    var host = (bodyPos === 'static') ? document.body : document.documentElement;\r\n    if (stage.parentNode !== host) {\r\n      host.appendChild(stage);\r\n    }\r\n\r\n    var IMAGES = [\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/flower13.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/flower11.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto1.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto2.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto3.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto4.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto5.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto6.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto7.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto8.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto9-1.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/stickerphoto10.jpg',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower4.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower5.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower2.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower3.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower6.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower7.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower8.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower1.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/flower9.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/cropped-siteicon.png'\r\n    ];\r\n\r\n    var DRESS_CODE_IMAGES = [\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/dressflower1.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/dressflower2.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/dressflower3.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/dressflower4.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/dressflower5.png',\r\n      'https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/05\/dressflower6.png'\r\n    ];\r\n\r\n    var DRESS_CODE_SELECTOR = '.dress-code';\r\n\r\n    IMAGES.concat(DRESS_CODE_IMAGES).forEach(function (src) { var i = new Image(); i.src = src; });\r\n\r\n    var EXCLUDE_SELECTOR = '.no-sticker-trail';\r\n\r\n    var GROW = 200;\r\n    var LINGER = 320;\r\n    var SHRINK = 500;\r\n    var TOTAL = GROW + LINGER + SHRINK;\r\n\r\n    \/\/ ====== FLUID SCALING (designed at 2560px) ======\r\n    \/\/ designScale() = how wide the viewport is relative to the 2560px\r\n    \/\/ design width, capped at 1 so it never scales UP past the original.\r\n    function designScale() {\r\n      return Math.min(window.innerWidth \/ 2560, 1);\r\n    }\r\n\r\n    \/\/ Friction scales with the viewport: more drag on smaller screens so\r\n    \/\/ stickers settle faster and travel a proportionally shorter distance.\r\n    \/\/   0.94 at 2560px  -> long glide\r\n    \/\/   ~0.85 at ~640px -> quick settle\r\n    function currentFriction() {\r\n      return 0.72 + 0.22 * designScale();\r\n    }\r\n\r\n    \/\/ SPAWN_DISTANCE: 240px at 2560px, floored at 140px.\r\n    \/\/ Recomputed on resize so the gap between stickers stays proportional.\r\n    var SPAWN_DISTANCE = 240;\r\n    function updateSpawnDistance() {\r\n      SPAWN_DISTANCE = Math.max(140, designScale() * 240);\r\n    }\r\n    updateSpawnDistance();\r\n    window.addEventListener('resize', updateSpawnDistance, { passive: true });\r\n    \/\/ ================================================\r\n\r\n    var IDLE_RESET_MS = 150;\r\n\r\n    var lastX = null, lastY = null;\r\n    var lastSpawnX = null, lastSpawnY = null;\r\n    var velX = 0, velY = 0;\r\n    var lastMoveTime = 0;\r\n\r\n    var stickers = [];\r\n\r\n    var rafId = null;\r\n    var running = false;\r\n\r\n    function bouncyGrow(t) {\r\n      var peak = 1.15;\r\n      var overshoot = peak - 1;\r\n      var up = 0.62;\r\n      if (t < up) {\r\n        var k = t \/ up;\r\n        return peak * (1 - Math.pow(1 - k, 2));\r\n      } else {\r\n        var k2 = (t - up) \/ (1 - up);\r\n        return peak - overshoot * (k2 * (2 - k2));\r\n      }\r\n    }\r\n    function easeInQuad(t) { return t * t; }\r\n\r\n    function isExcluded(target) {\r\n      return !!(target && target.closest && target.closest(EXCLUDE_SELECTOR));\r\n    }\r\n\r\n    function isDressCode(target) {\r\n      return !!(target && target.closest && target.closest(DRESS_CODE_SELECTOR));\r\n    }\r\n\r\n    function spawn(x, y, vx, vy, imageSet) {\r\n      if (!imageSet || !imageSet.length) return;\r\n\r\n      var el = document.createElement('div');\r\n      el.className = 'sticker';\r\n\r\n      var img = document.createElement('img');\r\n      img.src = imageSet[(Math.random() * imageSet.length) | 0];\r\n      img.alt = '';\r\n      img.draggable = false;\r\n      el.appendChild(img);\r\n\r\n      stage.appendChild(el);\r\n\r\n      var ds = designScale();\r\n      var friction = currentFriction();\r\n\r\n      \/\/ Base multiplier, scaled to viewport. Low floor so small screens\r\n      \/\/ actually scale down proportionally (0.28 at 2560px).\r\n      var launchScale = Math.max(0.12, ds * 0.28);\r\n\r\n      var jitterAng = (Math.random() - 0.5) * 0.6;\r\n      var cos = Math.cos(jitterAng), sin = Math.sin(jitterAng);\r\n      var lvx = (vx * cos - vy * sin) * launchScale;\r\n      var lvy = (vx * sin + vy * cos) * launchScale;\r\n\r\n      \/\/ ---- Hard cap on how far a sticker can travel ----\r\n      \/\/ Total travel \u2248 v \/ (1 - friction). To cap travel at maxTravel px\r\n      \/\/ we cap launch speed at maxTravel * (1 - friction). Uses this\r\n      \/\/ sticker's own friction so the cap stays correct at any size.\r\n      \/\/ maxTravel scales with the viewport: 220px at 2560, floored at 70px.\r\n      var maxTravel = Math.max(70, ds * 220);\r\n      var maxSpeed = maxTravel * (1 - friction);\r\n      var sp = Math.sqrt(lvx * lvx + lvy * lvy);\r\n      if (sp > maxSpeed) {\r\n        var f = maxSpeed \/ sp;\r\n        lvx *= f;\r\n        lvy *= f;\r\n      }\r\n      \/\/ --------------------------------------------------\r\n\r\n      stickers.push({\r\n        el: el,\r\n        x: x, y: y,\r\n        vx: lvx, vy: lvy,\r\n        friction: friction,\r\n        rot: (Math.random() - 0.5) * 12,\r\n        rotVel: (Math.random() - 0.5) * 1.2,\r\n        baseScale: 0.85 + Math.random() * 0.4,\r\n        born: performance.now()\r\n      });\r\n\r\n      ensureRunning();\r\n    }\r\n\r\n    function onMove(cx, cy, target, now) {\r\n      if (isExcluded(target)) {\r\n        lastX = cx; lastY = cy;\r\n        lastSpawnX = cx; lastSpawnY = cy;\r\n        velX = 0; velY = 0;\r\n        return;\r\n      }\r\n\r\n      if (lastX === null || (now - lastMoveTime) > IDLE_RESET_MS) {\r\n        lastX = cx; lastY = cy;\r\n        lastSpawnX = cx; lastSpawnY = cy;\r\n        velX = 0; velY = 0;\r\n        lastMoveTime = now;\r\n        return;\r\n      }\r\n      lastMoveTime = now;\r\n\r\n      var imageSet = isDressCode(target) ? DRESS_CODE_IMAGES : IMAGES;\r\n\r\n      var dx = cx - lastX, dy = cy - lastY;\r\n      velX = velX * 0.6 + dx * 0.4;\r\n      velY = velY * 0.6 + dy * 0.4;\r\n      lastX = cx; lastY = cy;\r\n\r\n      var sdx = cx - lastSpawnX, sdy = cy - lastSpawnY;\r\n      var dist = Math.sqrt(sdx * sdx + sdy * sdy);\r\n      if (dist >= SPAWN_DISTANCE) {\r\n        var scrollX = window.scrollX || window.pageXOffset;\r\n        var scrollY = window.scrollY || window.pageYOffset;\r\n        var steps = Math.min(Math.floor(dist \/ SPAWN_DISTANCE), 4);\r\n        for (var i = 1; i <= steps; i++) {\r\n          var t = i \/ steps;\r\n          var docX = (lastSpawnX + sdx * t) + scrollX;\r\n          var docY = (lastSpawnY + sdy * t) + scrollY;\r\n          spawn(docX, docY, velX, velY, imageSet);\r\n        }\r\n        lastSpawnX = cx; lastSpawnY = cy;\r\n      }\r\n    }\r\n\r\n    var pendingMove = null;\r\n    window.addEventListener('mousemove', function (e) {\r\n      pendingMove = { x: e.clientX, y: e.clientY, target: e.target };\r\n      ensureMoveProcessing();\r\n    }, { passive: true });\r\n\r\n    var moveRafId = null;\r\n    function ensureMoveProcessing() {\r\n      if (moveRafId !== null) return;\r\n      moveRafId = requestAnimationFrame(processMove);\r\n    }\r\n    function processMove() {\r\n      moveRafId = null;\r\n      if (pendingMove) {\r\n        var m = pendingMove;\r\n        pendingMove = null;\r\n        onMove(m.x, m.y, m.target, performance.now());\r\n      }\r\n    }\r\n\r\n    function tick(now) {\r\n      for (var i = stickers.length - 1; i >= 0; i--) {\r\n        var s = stickers[i];\r\n        var age = now - s.born;\r\n\r\n        if (age >= TOTAL) {\r\n          s.el.remove();\r\n          stickers.splice(i, 1);\r\n          continue;\r\n        }\r\n\r\n        s.vx *= s.friction;\r\n        s.vy *= s.friction;\r\n        s.x += s.vx;\r\n        s.y += s.vy;\r\n        s.rot += s.rotVel;\r\n        s.rotVel *= 0.96;\r\n\r\n        var scale, opacity;\r\n        if (age < GROW) {\r\n          var t1 = age \/ GROW;\r\n          scale = bouncyGrow(t1) * s.baseScale;\r\n          opacity = Math.min(1, t1 * 1.8);\r\n        } else if (age < GROW + LINGER) {\r\n          scale = s.baseScale;\r\n          opacity = 1;\r\n        } else {\r\n          var t2 = (age - GROW - LINGER) \/ SHRINK;\r\n          scale = s.baseScale * (1 - easeInQuad(t2));\r\n          opacity = 1 - t2;\r\n        }\r\n\r\n        s.el.style.left = '0';\r\n        s.el.style.top = '0';\r\n        s.el.style.transform =\r\n          'translate(-50%, -50%) translate(' + s.x + 'px, ' + s.y + 'px) rotate(' + s.rot + 'deg) scale(' + scale + ')';\r\n        s.el.style.opacity = opacity;\r\n      }\r\n\r\n      if (stickers.length === 0) {\r\n        running = false;\r\n        rafId = null;\r\n        return;\r\n      }\r\n      rafId = requestAnimationFrame(tick);\r\n    }\r\n\r\n    function ensureRunning() {\r\n      if (running) return;\r\n      running = true;\r\n      rafId = requestAnimationFrame(tick);\r\n    }\r\n\r\n    document.addEventListener('visibilitychange', function () {\r\n      if (document.hidden) {\r\n        if (rafId !== null) { cancelAnimationFrame(rafId); rafId = null; }\r\n        if (moveRafId !== null) { cancelAnimationFrame(moveRafId); moveRafId = null; }\r\n        running = false;\r\n        lastX = lastY = lastSpawnX = lastSpawnY = null;\r\n        velX = velY = 0;\r\n      } else {\r\n        if (stickers.length) ensureRunning();\r\n      }\r\n    });\r\n  }\r\n\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', startStickerTrail);\r\n  } else {\r\n    startStickerTrail();\r\n  }\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7a8dc5f elementor-widget elementor-widget-html\" data-id=\"7a8dc5f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\ndocument.addEventListener('DOMContentLoaded', function() {\r\n  \/\/ Adjust these selectors to match your actual field names in Fluent Forms\r\n  const firstNameField = document.querySelector('input[name=\"names[first_name]\"]');\r\n  const lastNameField = document.querySelector('input[name=\"names[last_name]\"]');\r\n\r\n  function checkNames() {\r\n    if (!firstNameField || !lastNameField) return;\r\n    const first = firstNameField.value.trim().toLowerCase();\r\n    const last = lastNameField.value.trim().toLowerCase();\r\n\r\n    if (first === 'jeremy' && last === 'lau') {\r\n      document.body.classList.add('vip-guest');\r\n    } else {\r\n      document.body.classList.remove('vip-guest');\r\n    }\r\n  }\r\n\r\n  if (firstNameField) firstNameField.addEventListener('input', checkNames);\r\n  if (lastNameField) lastNameField.addEventListener('input', checkNames);\r\n});\r\n<\/script>\r\n\r\n<style>\r\n.vip-guest .arteta1 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta1 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta1-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n\r\n.vip-guest .arteta2 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta2 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta2.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta3 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta3 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta3-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta4 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta4 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta4-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta5 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta5 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta5-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta6 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta6 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta6-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta7 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta7 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta7-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta8 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta8 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta8-1-scaled.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta9 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta9 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta9-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta10 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta10 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/07\/arteta10-highres.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetahero1 img {\r\n  opacity: 0;\r\n    margin-top:0px !important;\r\n}\r\n\r\n.vip-guest .artetahero1 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/artetahero1-1.jpg');\r\n  background-size: cover;\r\n  background-position: top;\r\n  background-repeat: no-repeat;\r\n  margin-top:0px !important;\r\n}\r\n\r\n.vip-guest .elementor-9 .elementor-element.elementor-element-5432b46 {\r\n    margin-top:0px !important;\r\n}\r\n\r\n.vip-guest .artetahero2 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetahero2 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/artetahero2-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetahero3 img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetahero3 {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/artetahero3-1-scaled.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetaenvelopedesktop img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetaenvelopedesktop {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteteenvelope-desktop.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetaherodesktop img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetaherodesktop {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/artetaherobanner-scaled.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n\r\n\r\n\r\n.vip-guest .arteta1-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta1-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta1-lowres-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n\r\n.vip-guest .arteta2-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta2-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta2.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta3-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta3-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta3-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta4-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta4-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta4-lowres-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta5-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta5-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta5-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta6-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta6-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta6-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta7-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta7-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta7-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta8-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta8-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/arteta8-lowres-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta9-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta9-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/hf_20260626_100411_bae994c7-f8fa-4013-802d-7125cbc5cee8-lowres-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .arteta10-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .arteta10-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/07\/arteta10-lowres.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetahero1-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetahero1-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/artetahero1-1.jpg');\r\n  background-size: cover;\r\n  margin-top:0px !important;\r\n  --e-transform-translateY:0px !important;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetahero2-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetahero2-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/artetahero2-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetahero3-m img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetahero3-m {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/artetahero3-1-scaled.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetaenvelopemobile img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetaenvelopemobile {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/envelope-banner-mobile-arteta.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n.vip-guest .artetaheromobile img {\r\n  opacity: 0;\r\n}\r\n\r\n.vip-guest .artetaheromobile {\r\n  background-image: url('https:\/\/jernobia.kinsta.cloud\/wp-content\/uploads\/2026\/06\/artetaherobanner-mobile-1.jpg');\r\n  background-size: cover;\r\n  background-position: center;\r\n  background-repeat: no-repeat;\r\n}\r\n\r\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>We&#8217;re getting married! Zenobia &amp; Jeremy Register Now We&#8217;re getting married! Zenobia &amp; Jeremy Register Now BOARDING PASS Save the Date Zenobia &amp; Jeremy Destination Como Point Yamu 225 Moo 7, Paklok, Thalang, Phuket, Thailand Date 12.12.2026 Time 16:00 12th Dec 2026 Kindly register by 15 Aug 2026 BOARDING PASS Save the Date Zenobia &amp; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-9","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/jernobia.com\/index.php?rest_route=\/wp\/v2\/pages\/9","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jernobia.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/jernobia.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/jernobia.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jernobia.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9"}],"version-history":[{"count":9,"href":"https:\/\/jernobia.com\/index.php?rest_route=\/wp\/v2\/pages\/9\/revisions"}],"predecessor-version":[{"id":6954,"href":"https:\/\/jernobia.com\/index.php?rest_route=\/wp\/v2\/pages\/9\/revisions\/6954"}],"wp:attachment":[{"href":"https:\/\/jernobia.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}