{"id":203,"date":"2025-11-20T20:00:13","date_gmt":"2025-11-20T20:00:13","guid":{"rendered":"https:\/\/authorwebsitepublishing.xyz\/rb\/?page_id=203"},"modified":"2025-11-24T15:06:31","modified_gmt":"2025-11-24T15:06:31","slug":"the-book","status":"publish","type":"page","link":"https:\/\/authorwebsitepublishing.xyz\/rb\/the-book\/","title":{"rendered":"The Book"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"203\" class=\"elementor elementor-203\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f50fc06 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"f50fc06\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-a3f8b74\" data-id=\"a3f8b74\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d5767a6 elementor-widget elementor-widget-image\" data-id=\"d5767a6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"404\" src=\"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/book-cover-IhLagj_v-1024x517.jpg\" class=\"attachment-large size-large wp-image-14\" alt=\"\" srcset=\"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/book-cover-IhLagj_v-1024x517.jpg 1024w, https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/book-cover-IhLagj_v-300x151.jpg 300w, https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/book-cover-IhLagj_v-768x388.jpg 768w, https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/book-cover-IhLagj_v-1536x775.jpg 1536w, https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/book-cover-IhLagj_v.jpg 1920w\" 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\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-47db652\" data-id=\"47db652\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b885c61 elementor-widget elementor-widget-html\" data-id=\"b885c61\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<canvas id=\"snow-canvas\"><\/canvas>\r\n\r\n<style>\r\n  #snow-canvas {\r\n    position: fixed;\r\n    left: 0;\r\n    top: 0;\r\n    width: 100%;\r\n    height: 100%;\r\n    pointer-events: none;\r\n    z-index: 1;\r\n    display: block;\r\n  }\r\n<\/style>\r\n\r\n<script>\r\n(function() {\r\n  const canvas = document.getElementById('snow-canvas');\r\n  const ctx = canvas.getContext('2d');\r\n\r\n  let PARTICLE_COUNT = Math.round(window.innerWidth \/ 25);\r\n  const SIZE_MIN = 1;\r\n  const SIZE_MAX = 3;\r\n\r\n  \/\/ Increased speed\r\n  const SPEED_MIN = 0.2;\r\n  const SPEED_MAX = 0.5;\r\n\r\n  const WIND_RANGE = 0.2;\r\n\r\n  let particles = [];\r\n\r\n  function resize() {\r\n    const dpr = window.devicePixelRatio || 1;\r\n    canvas.width = Math.round(window.innerWidth * dpr);\r\n    canvas.height = Math.round(window.innerHeight * dpr);\r\n    canvas.style.width = window.innerWidth + 'px';\r\n    canvas.style.height = window.innerHeight + 'px';\r\n    ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\r\n\r\n    PARTICLE_COUNT = Math.round(window.innerWidth \/ 25);\r\n    initParticles();\r\n  }\r\n\r\n  function rand(min, max) {\r\n    return Math.random() * (max - min) + min;\r\n  }\r\n\r\n  function initParticles() {\r\n    particles = [];\r\n    for (let i = 0; i < PARTICLE_COUNT; i++) {\r\n      const r = rand(SIZE_MIN, SIZE_MAX);\r\n      particles.push({\r\n        x: Math.random() * window.innerWidth,\r\n        y: Math.random() * window.innerHeight,\r\n        r: r,\r\n        speed: rand(SPEED_MIN, SPEED_MAX),\r\n        wind: rand(-WIND_RANGE, WIND_RANGE),\r\n        alpha: rand(0.5, 1)\r\n      });\r\n    }\r\n  }\r\n\r\n  function update() {\r\n    for (let p of particles) {\r\n      p.y += p.speed;          \/\/ move straight down\r\n      p.x += p.wind * 0.2;     \/\/ slight horizontal drift for wind\r\n\r\n      if (p.y - p.r > window.innerHeight) {\r\n        p.y = -p.r;\r\n        p.x = Math.random() * window.innerWidth;\r\n      }\r\n\r\n      if (p.x < -20) p.x = window.innerWidth + 20;\r\n      if (p.x > window.innerWidth + 20) p.x = -20;\r\n    }\r\n  }\r\n\r\n  function draw() {\r\n    ctx.clearRect(0, 0, canvas.width, canvas.height);\r\n    for (let p of particles) {\r\n      ctx.beginPath();\r\n      ctx.arc(p.x, p.y, p.r, 0, Math.PI * 2);\r\n      ctx.fillStyle = 'rgba(255,255,255,' + p.alpha + ')';\r\n      ctx.fill();\r\n    }\r\n  }\r\n\r\n  function loop() {\r\n    update();\r\n    draw();\r\n    requestAnimationFrame(loop);\r\n  }\r\n\r\n  window.addEventListener('resize', resize);\r\n  resize();\r\n  loop();\r\n})();\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-56bdf95 elementor-align-left elementor-widget elementor-widget-button\" data-id=\"56bdf95\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">TALE 1 \u2022 AVAILABLE NOW<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\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-677f7b1 premium-header-inline premium-lq__none premium-box-lq__none elementor-widget elementor-widget-premium-addon-dual-header\" data-id=\"677f7b1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"premium-addon-dual-header.default\">\n\t\t\t\t\t\n\t\t<div class=\"elementor-widget-container\">\n\t\t<div class=\"premium-dual-header-wrapper\">\n\t\t\t\t\t<h2 class=\"premium-dual-header-first-header \"><span class=\"premium-dual-header-first-span\">The Nearly True Adventures of Carayak <\/span><\/h2> \t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b7f42ed elementor-widget elementor-widget-text-editor\" data-id=\"b7f42ed\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-2xl text-primary\">A Magical Alaskan Adventure Like No Other!<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-273f4d0 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"273f4d0\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3eaf321\" data-id=\"3eaf321\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-262cb47 elementor-align-left elementor-widget elementor-widget-button\" data-id=\"262cb47\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.amazon.com\/Nearly-True-Adventures-Carayak-Bearded-ebook\/dp\/B0F4LNP9CP\/ref=tmm_kin_swatch_0?_encoding=UTF8&#038;dib_tag=se&#038;dib=eyJ2IjoiMSJ9.TstJ_LBXowF_bjXqZTUq4A.IqgO3VU4nbVSdgHBpL29854dybyuwUUqXn7ygOoBdto&#038;qid=1763996348&#038;sr=1-1\">\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\">Read the Book<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-409144b\" data-id=\"409144b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-437dc24 elementor-align-left elementor-widget elementor-widget-button\" data-id=\"437dc24\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.amazon.com\/Nearly-True-Adventures-Carayak-Bearded-ebook\/dp\/B0F4LNP9CP\/ref=tmm_kin_swatch_0?_encoding=UTF8&#038;dib_tag=se&#038;dib=eyJ2IjoiMSJ9.TstJ_LBXowF_bjXqZTUq4A.IqgO3VU4nbVSdgHBpL29854dybyuwUUqXn7ygOoBdto&#038;qid=1763996348&#038;sr=1-1\">\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\"> Join the Adventure<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4a74723\" data-id=\"4a74723\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-43240c8 elementor-align-left elementor-widget elementor-widget-button\" data-id=\"43240c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.amazon.com\/Nearly-True-Adventures-Carayak-Bearded-ebook\/dp\/B0F4LNP9CP\/ref=tmm_kin_swatch_0?_encoding=UTF8&#038;dib_tag=se&#038;dib=eyJ2IjoiMSJ9.TstJ_LBXowF_bjXqZTUq4A.IqgO3VU4nbVSdgHBpL29854dybyuwUUqXn7ygOoBdto&#038;qid=1763996348&#038;sr=1-1\">\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\">Listen to Audiobook<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1a8ff5e elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"1a8ff5e\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ae94139\" data-id=\"ae94139\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ac117e6 elementor-widget elementor-widget-heading\" data-id=\"ac117e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">The Story\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-16bfdf6 elementor-widget elementor-widget-text-editor\" data-id=\"16bfdf6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-muted-foreground leading-relaxed mb-4\">Deep in the frozen north of Alaska, where the wind howls and the snow drifts high, a Red-Bearded Man and his son, Carayak, live on the edge of the world. Their life is filled with wild adventures\u2014but none as strange as the day Carayak tumbled into a snow cave and found himself face-to-face with dancing tundra elves, a talking moose, and a secret so big it could change everything!<\/p><p class=\"text-muted-foreground leading-relaxed mb-4\">Carayak must make a choice: keep the biggest secret of his life or risk losing his dad to the magic of the north forever. Will he be able to stay silent, or will his tongue slip, turning his father into a moose for good?<\/p><p class=\"text-muted-foreground leading-relaxed\">Based on nearly true stories passed down through laughter and late-night storytelling, The Nearly True Adventures of Carayak and the Red-Bearded Man is a heartwarming, hilarious, and slightly unbelievable tale of magic, mischief, and the power of keeping a promise.<\/p>\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-62a0b5c elementor-widget elementor-widget-text-editor\" data-id=\"62a0b5c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<section class=\"py-20 bg-woodland\/50\"><div class=\"container mx-auto px-4\"><div class=\"max-w-4xl mx-auto\"><div class=\"rounded-lg border text-card-foreground shadow-sm p-8 md:p-12 bg-card\/80 backdrop-blur-sm border-border\/50 shadow-card-custom\"><div class=\"prose prose-invert prose-lg max-w-none\"><p class=\"text-lg font-semibold text-foreground mt-6\">Perfect for kids, parents, and adventure-lovers of all ages!<\/p><\/div><\/div><\/div><\/div><\/section><section id=\"audiobook\" class=\"py-20\"><div class=\"container mx-auto px-4\"><div class=\"max-w-3xl mx-auto\"><div class=\"bg-gradient-to-br from-woodland to-card rounded-2xl p-8 shadow-glow border border-primary\/20\"><div class=\"flex flex-col gap-6\"><div class=\"flex items-center gap-4\"><div class=\"w-16 h-16 bg-primary\/20 rounded-full flex items-center justify-center animate-glow-pulse\">\u00a0<\/div><div>\u00a0<\/div><\/div><\/div><\/div><\/div><\/div><\/section>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1d64097 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"1d64097\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fb63d76\" data-id=\"fb63d76\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b1bb5ca elementor-widget elementor-widget-heading\" data-id=\"b1bb5ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Listen to the Adventure\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a5364dd elementor-widget elementor-widget-text-editor\" data-id=\"a5364dd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"text-center mb-12\"><p class=\"text-xl text-muted-foreground\">Experience the magic through audio narration<\/p><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-3f1dc9e elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"3f1dc9e\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-02b6db5\" data-id=\"02b6db5\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7888188 elementor-widget elementor-widget-image\" data-id=\"7888188\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"82\" height=\"79\" src=\"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/Screenshot-2025-11-21-234120.png\" class=\"attachment-large size-large wp-image-470\" 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-69afcc2 elementor-widget elementor-widget-text-editor\" data-id=\"69afcc2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-xl font-bold\">Listen to the Adventure<\/p>\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-53ad0a8 elementor-widget elementor-widget-text-editor\" data-id=\"53ad0a8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"text-center mb-12\"><div class=\"text-center mb-12\"><p class=\"text-xl text-muted-foreground\">Sample from Chapter 1<\/p><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-9464f35 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"9464f35\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-dafebc3\" data-id=\"dafebc3\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4210b61 elementor-align-right elementor-widget elementor-widget-button\" data-id=\"4210b61\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.amazon.com\/Nearly-True-Adventures-Carayak-Bearded-ebook\/dp\/B0F4LNP9CP\/ref=tmm_kin_swatch_0?_encoding=UTF8&#038;dib_tag=se&#038;dib=eyJ2IjoiMSJ9.TstJ_LBXowF_bjXqZTUq4A.IqgO3VU4nbVSdgHBpL29854dybyuwUUqXn7ygOoBdto&#038;qid=1763996348&#038;sr=1-1\">\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\">Buy on Amazon<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-53a1799\" data-id=\"53a1799\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b220d94 elementor-align-left elementor-widget elementor-widget-button\" data-id=\"b220d94\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.amazon.com\/Nearly-True-Adventures-Carayak-Bearded-ebook\/dp\/B0F4LNP9CP\/ref=tmm_kin_swatch_0?_encoding=UTF8&#038;dib_tag=se&#038;dib=eyJ2IjoiMSJ9.TstJ_LBXowF_bjXqZTUq4A.IqgO3VU4nbVSdgHBpL29854dybyuwUUqXn7ygOoBdto&#038;qid=1763996348&#038;sr=1-1\">\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\">Read Sample<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-b2f4d7a elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"b2f4d7a\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ecd3bb3\" data-id=\"ecd3bb3\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d1dce71 elementor-widget elementor-widget-heading\" data-id=\"d1dce71\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Meet the Characters\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6d6c0ca elementor-widget elementor-widget-text-editor\" data-id=\"6d6c0ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"text-center mb-12\"><div class=\"text-center mb-12\"><div class=\"text-center mb-12\"><p class=\"text-xl text-muted-foreground\">The heroes and magical beings of Carayak&#8217;s tale<\/p><\/div><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-41dbe1f elementor-section-full_width elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"41dbe1f\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-96e2197\" data-id=\"96e2197\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4caeb9c elementor-widget elementor-widget-image\" data-id=\"4caeb9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"82\" height=\"77\" src=\"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/Screenshot-2025-11-21-011631.png\" class=\"attachment-large size-large wp-image-220\" 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-154f692 elementor-widget elementor-widget-text-editor\" data-id=\"154f692\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-xl font-bold\"><strong>Carayak<\/strong><\/p>\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-6866dd5 elementor-widget elementor-widget-text-editor\" data-id=\"6866dd5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"text-center mb-12\"><div class=\"text-center mb-12\"><p class=\"text-xl text-muted-foreground\">A curious and brave boy who<\/p><p class=\"text-xl text-muted-foreground\">discovers a magical secret<\/p><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-ca81dd6\" data-id=\"ca81dd6\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-6b23765 elementor-widget elementor-widget-image\" data-id=\"6b23765\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"82\" height=\"77\" src=\"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/Screenshot-2025-11-21-011631.png\" class=\"attachment-large size-large wp-image-220\" 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-33ec26d elementor-widget elementor-widget-text-editor\" data-id=\"33ec26d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-xl font-bold\">The Red-Bearded Man<\/p>\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-af84d15 elementor-widget elementor-widget-text-editor\" data-id=\"af84d15\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Carayak&#8217;s father, a rugged<\/p><p>Alaskan with a mysterious past<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-56248a7\" data-id=\"56248a7\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b334577 elementor-widget elementor-widget-image\" data-id=\"b334577\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"82\" height=\"77\" src=\"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/Screenshot-2025-11-21-011631.png\" class=\"attachment-large size-large wp-image-220\" 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-e4c0fb1 elementor-widget elementor-widget-text-editor\" data-id=\"e4c0fb1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-xl font-bold\">The Magical Moose<\/p>\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-524d2b9 elementor-widget elementor-widget-text-editor\" data-id=\"524d2b9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"text-center mb-12\"><div class=\"text-center mb-12\"><p class=\"text-xl text-muted-foreground\">A transformed father with<\/p><p class=\"text-xl text-muted-foreground\">antlers and wisdom<\/p><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-95d6ffc\" data-id=\"95d6ffc\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-79b5c99 elementor-widget elementor-widget-image\" data-id=\"79b5c99\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"82\" height=\"77\" src=\"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-content\/uploads\/2025\/11\/Screenshot-2025-11-21-011631.png\" class=\"attachment-large size-large wp-image-220\" 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-bb8e26a elementor-widget elementor-widget-text-editor\" data-id=\"bb8e26a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-xl font-bold\">Tundra Elves Elder<\/p>\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-500b692 elementor-widget elementor-widget-text-editor\" data-id=\"500b692\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"text-center mb-12\"><div class=\"text-center mb-12\"><p class=\"text-xl text-muted-foreground\">Ancient guardian of the north&#8217;s<\/p><p class=\"text-xl text-muted-foreground\">most powerful magic<\/p><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-7d2a4eb elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"7d2a4eb\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0766670\" data-id=\"0766670\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-2139c4b elementor-widget elementor-widget-heading\" data-id=\"2139c4b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Inside the Book\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e8f8719 elementor-widget elementor-widget-text-editor\" data-id=\"e8f8719\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"text-center mb-12\"><div class=\"text-center mb-12\"><p class=\"text-xl text-muted-foreground\">A glimpse into Carayak&#8217;s magical world<\/p><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-dc9ddf9 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"dc9ddf9\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2f8584f\" data-id=\"2f8584f\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-18dd8c1 elementor-align-start elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"18dd8c1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-book-open\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">\"The snow cave glittered with ice crystals that sparkled like a thousand tiny stars. Carayak's breath came out in white puffs as he stared at the dancing figures before him. They were small, no taller than his knee, with pointed ears and clothes made of moss and lichen. Tundra elves. Real, actual tundra elves...\" <br> \u2014 Chapter 3: The Snow Cave<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-30ec472 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"30ec472\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-e42ca52\" data-id=\"e42ca52\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-9999389 elementor-align-start elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"9999389\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-book-open\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">\"The elder elf's voice was ancient and creaky, like wind through old trees. 'Remember, young one, if your tongue gets loose, he stays a moose. The magic of the north does not forgive broken promises.'\"<br>\u2014 Chapter 5: The Warning<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6a60fa3 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"6a60fa3\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-aeb1f9f\" data-id=\"aeb1f9f\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-0fc3df9 elementor-widget elementor-widget-heading\" data-id=\"0fc3df9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Behind the Story\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e8d0149 elementor-widget elementor-widget-text-editor\" data-id=\"e8d0149\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-muted-foreground leading-relaxed mb-4\">Growing up in Alaska, I heard countless &#8220;nearly true&#8221; stories around campfires and dinner tables. Tales of mysterious encounters in the wilderness, of magic hiding in plain sight beneath the aurora borealis, and of the importance of keeping your word\u2014even when it&#8217;s the hardest thing in the world.<\/p><p class=\"text-muted-foreground leading-relaxed\">Carayak&#8217;s adventure is inspired by these stories and by the incredible bond between parents and children. At its heart, this is a story about promises, about the magic that exists when we honor our commitments, and about the love that transcends even the wildest transformations.<\/p>\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-0bddcbd elementor-widget elementor-widget-text-editor\" data-id=\"0bddcbd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<section class=\"py-20 bg-woodland\/50\"><div class=\"container mx-auto px-4\"><div class=\"max-w-4xl mx-auto\"><div class=\"rounded-lg border text-card-foreground shadow-sm p-8 md:p-12 bg-card\/80 backdrop-blur-sm border-border\/50 shadow-card-custom\"><div class=\"prose prose-invert prose-lg max-w-none\"><p class=\"text-lg font-semibold text-foreground mt-6\">\u2014 R.B. Beck<\/p><\/div><\/div><\/div><\/div><\/section>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cc2bf04 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"cc2bf04\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-55a0b8d\" data-id=\"55a0b8d\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ecee736 elementor-widget elementor-widget-heading\" data-id=\"ecee736\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Begin the Adventure Today<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bc79eeb elementor-widget elementor-widget-text-editor\" data-id=\"bc79eeb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p class=\"text-xl text-muted-foreground mb-8 max-w-2xl mx-auto\">Join Carayak in the frozen north and discover the magic, mischief, and<\/p><p class=\"text-xl text-muted-foreground mb-8 max-w-2xl mx-auto\">wonder waiting in the snow-covered wilderness of Alaska.<\/p><div class=\"flex flex-col sm:flex-row gap-4 justify-center\">\u00a0<\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-e0c07d5 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-equal-height-no\" data-id=\"e0c07d5\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-2c83647\" data-id=\"2c83647\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ec404a4 elementor-align-right elementor-widget elementor-widget-button\" data-id=\"ec404a4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.amazon.com\/Nearly-True-Adventures-Carayak-Bearded-ebook\/dp\/B0F4LNP9CP\/ref=tmm_kin_swatch_0?_encoding=UTF8&#038;dib_tag=se&#038;dib=eyJ2IjoiMSJ9.TstJ_LBXowF_bjXqZTUq4A.IqgO3VU4nbVSdgHBpL29854dybyuwUUqXn7ygOoBdto&#038;qid=1763996348&#038;sr=1-1\">\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\">Buy on Amazon<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-c02e6d5\" data-id=\"c02e6d5\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-bfa3a71 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"bfa3a71\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.amazon.com\/Nearly-True-Adventures-Carayak-Bearded-ebook\/dp\/B0F4LNP9CP\/ref=tmm_kin_swatch_0?_encoding=UTF8&#038;dib_tag=se&#038;dib=eyJ2IjoiMSJ9.TstJ_LBXowF_bjXqZTUq4A.IqgO3VU4nbVSdgHBpL29854dybyuwUUqXn7ygOoBdto&#038;qid=1763996348&#038;sr=1-1\">\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\">Download Sample<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-9626a8b\" data-id=\"9626a8b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-cee1543 elementor-align-left elementor-widget elementor-widget-button\" data-id=\"cee1543\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.amazon.com\/Nearly-True-Adventures-Carayak-Bearded-ebook\/dp\/B0F4LNP9CP\/ref=tmm_kin_swatch_0?_encoding=UTF8&#038;dib_tag=se&#038;dib=eyJ2IjoiMSJ9.TstJ_LBXowF_bjXqZTUq4A.IqgO3VU4nbVSdgHBpL29854dybyuwUUqXn7ygOoBdto&#038;qid=1763996348&#038;sr=1-1\">\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\">Get Audiobook<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>TALE 1 \u2022 AVAILABLE NOW The Nearly True Adventures of Carayak A Magical Alaskan Adventure Like No Other! Read the Book Join the Adventure Listen to Audiobook The Story Deep in the frozen north of Alaska, where the wind howls and the snow drifts high, a Red-Bearded Man and his son, Carayak, live on the edge of the world. Their life is filled with wild adventures\u2014but none as strange as the day Carayak tumbled into a snow cave and found himself face-to-face with dancing tundra elves, a talking moose, and a secret so big it could change everything! Carayak must make a choice: keep the biggest secret of his life or risk losing his dad to the magic of the north forever. Will he be able to stay silent, or will his tongue slip, turning his father into a moose for good? Based on nearly true stories passed down through laughter and late-night storytelling, The Nearly True Adventures of Carayak and the Red-Bearded Man is a heartwarming, hilarious, and slightly unbelievable tale of magic, mischief, and the power of keeping a promise. Perfect for kids, parents, and adventure-lovers of all ages! \u00a0\u00a0 Listen to the Adventure Experience the magic through audio narration Listen to the Adventure Sample from Chapter 1 Buy on Amazon Read Sample Meet the Characters The heroes and magical beings of Carayak&#8217;s tale Carayak A curious and brave boy who discovers a magical secret The Red-Bearded Man Carayak&#8217;s father, a rugged Alaskan with a mysterious past The Magical Moose A transformed father with antlers and wisdom Tundra Elves Elder Ancient guardian of the north&#8217;s most powerful magic Inside the Book A glimpse into Carayak&#8217;s magical world &#8220;The snow cave glittered with ice crystals that sparkled like a thousand tiny stars. Carayak&#8217;s breath came out in white puffs as he stared at the dancing figures before him. They were small, no taller than his knee, with pointed ears and clothes made of moss and lichen. Tundra elves. Real, actual tundra elves&#8230;&#8221; \u2014 Chapter 3: The Snow Cave &#8220;The elder elf&#8217;s voice was ancient and creaky, like wind through old trees. &#8216;Remember, young one, if your tongue gets loose, he stays a moose. The magic of the north does not forgive broken promises.&#8217;&#8221;\u2014 Chapter 5: The Warning Behind the Story Growing up in Alaska, I heard countless &#8220;nearly true&#8221; stories around campfires and dinner tables. Tales of mysterious encounters in the wilderness, of magic hiding in plain sight beneath the aurora borealis, and of the importance of keeping your word\u2014even when it&#8217;s the hardest thing in the world. Carayak&#8217;s adventure is inspired by these stories and by the incredible bond between parents and children. At its heart, this is a story about promises, about the magic that exists when we honor our commitments, and about the love that transcends even the wildest transformations. \u2014 R.B. Beck Begin the Adventure Today Join Carayak in the frozen north and discover the magic, mischief, and wonder waiting in the snow-covered wilderness of Alaska. \u00a0 Buy on Amazon Download Sample Get Audiobook<\/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-203","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-json\/wp\/v2\/pages\/203","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-json\/wp\/v2\/comments?post=203"}],"version-history":[{"count":40,"href":"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-json\/wp\/v2\/pages\/203\/revisions"}],"predecessor-version":[{"id":577,"href":"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-json\/wp\/v2\/pages\/203\/revisions\/577"}],"wp:attachment":[{"href":"https:\/\/authorwebsitepublishing.xyz\/rb\/wp-json\/wp\/v2\/media?parent=203"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}