The Ultimate Family Travel Guide with Little Ones
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Energetic Explorers – Holly East</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--cream: #f5f0e8;
--sage: #5c6b4a;
--dark-sage: #3a4430;
--warm-brown: #8b6f47;
--light-sage: #e8ede0;
--text: #2c2c2c;
--muted: #7a7a6e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--cream);
color: var(--text);
font-family: 'DM Sans', sans-serif;
font-weight: 300;
overflow-x: hidden;
}
/* HERO */
.hero {
background: var(--dark-sage);
padding: 80px;
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 80px;
align-items: center;
min-height: 90vh;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -200px;
right: -200px;
width: 600px;
height: 600px;
border-radius: 50%;
background: rgba(255,255,255,0.02);
pointer-events: none;
}
.hero-book {
position: relative;
}
.hero-book img {
width: 100%;
max-width: 340px;
display: block;
box-shadow: 40px 40px 80px rgba(0,0,0,0.4);
animation: floatIn 1s ease both;
}
.hero-content {
animation: fadeUp 0.8s 0.2s ease both;
}
.brand-tag {
font-size: 11px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: rgba(255,255,255,0.4);
margin-bottom: 32px;
display: block;
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(48px, 6vw, 76px);
font-weight: 600;
line-height: 1;
color: #fff;
letter-spacing: -1px;
margin-bottom: 16px;
}
.hero-subtitle {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: 22px;
font-weight: 300;
color: rgba(255,255,255,0.6);
margin-bottom: 40px;
}
.hero-divider {
width: 48px;
height: 1px;
background: rgba(255,255,255,0.2);
margin-bottom: 40px;
}
.hero-hook {
font-size: 17px;
line-height: 1.8;
color: rgba(255,255,255,0.8);
max-width: 480px;
margin-bottom: 48px;
}
.hero-hook strong {
color: #fff;
font-weight: 500;
}
.hero-cta-wrap {
display: flex;
align-items: center;
gap: 28px;
flex-wrap: wrap;
}
.btn-primary {
background: var(--cream);
color: var(--dark-sage);
padding: 18px 44px;
font-family: 'DM Sans', sans-serif;
font-size: 13px;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
}
.btn-primary:hover {
background: var(--light-sage);
transform: translateY(-2px);
}
.price-tag {
font-family: 'Cormorant Garamond', serif;
font-size: 42px;
font-weight: 300;
color: #fff;
line-height: 1;
}
.price-tag span {
font-size: 14px;
font-family: 'DM Sans', sans-serif;
color: rgba(255,255,255,0.4);
display: block;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-top: 4px;
}
/* TRUST BAR */
.trust-bar {
background: var(--light-sage);
padding: 28px 80px;
display: flex;
justify-content: center;
gap: 60px;
flex-wrap: wrap;
}
.trust-item {
display: flex;
align-items: center;
gap: 10px;
font-size: 13px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--sage);
}
.trust-item span {
font-size: 18px;
}
/* INTRO */
.intro {
padding: 100px 80px;
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.section-label {
font-size: 11px;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--sage);
margin-bottom: 20px;
display: block;
}
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(34px, 4vw, 48px);
font-weight: 400;
line-height: 1.2;
color: var(--dark-sage);
margin-bottom: 28px;
}
.body-text {
font-size: 15px;
line-height: 1.9;
color: var(--muted);
}
.body-text p + p {
margin-top: 16px;
}
.body-text strong {
color: var(--text);
font-weight: 500;
}
.intro-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2px;
margin-top: 8px;
}
.stat-box {
background: var(--light-sage);
padding: 32px 28px;
text-align: center;
}
.stat-number {
font-family: 'Cormorant Garamond', serif;
font-size: 52px;
font-weight: 300;
color: var(--sage);
line-height: 1;
margin-bottom: 8px;
}
.stat-label {
font-size: 12px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
line-height: 1.4;
}
/* CONTENTS */
.contents {
background: var(--dark-sage);
padding: 100px 80px;
}
.contents-header {
text-align: center;
margin-bottom: 64px;
}
.contents-header .section-label {
color: rgba(255,255,255,0.4);
}
.contents-header .section-title {
color: #fff;
}
.contents-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
max-width: 1100px;
margin: 0 auto;
}
.content-card {
background: rgba(255,255,255,0.04);
padding: 40px 36px;
transition: background 0.3s ease;
}
.content-card:hover {
background: rgba(255,255,255,0.08);
}
.card-emoji {
font-size: 28px;
margin-bottom: 16px;
display: block;
}
.card-title {
font-family: 'Cormorant Garamond', serif;
font-size: 24px;
font-weight: 400;
color: #fff;
margin-bottom: 16px;
}
.card-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}
.card-list li {
font-size: 13px;
color: rgba(255,255,255,0.5);
line-height: 1.5;
padding-left: 14px;
position: relative;
}
.card-list li::before {
content: '·';
position: absolute;
left: 0;
color: var(--sage);
}
/* FOR YOU */
.for-you {
padding: 100px 80px;
max-width: 1100px;
margin: 0 auto;
}
.for-you-header {
margin-bottom: 56px;
}
.for-you-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2px;
}
.for-you-item {
background: var(--light-sage);
padding: 36px 40px;
display: flex;
gap: 20px;
align-items: flex-start;
}
.check {
width: 28px;
height: 28px;
background: var(--sage);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
flex-shrink: 0;
margin-top: 2px;
}
.for-you-item p {
font-size: 15px;
line-height: 1.7;
color: var(--text);
}
/* FINAL CTA */
.final-cta {
background: var(--cream);
padding: 120px 80px;
text-align: center;
border-top: 1px solid rgba(92,107,74,0.15);
}
.final-cta .section-label {
margin-bottom: 20px;
}
.final-cta h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(36px, 5vw, 60px);
font-weight: 400;
line-height: 1.2;
color: var(--dark-sage);
margin-bottom: 20px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.final-cta p {
font-size: 16px;
line-height: 1.8;
color: var(--muted);
max-width: 520px;
margin: 0 auto 48px;
}
.price-block {
margin-bottom: 36px;
}
.big-price {
font-family: 'Cormorant Garamond', serif;
font-size: 72px;
font-weight: 300;
color: var(--dark-sage);
line-height: 1;
}
.price-note {
font-size: 13px;
color: var(--muted);
margin-top: 6px;
letter-spacing: 0.08em;
}
.btn-large {
background: var(--dark-sage);
color: #fff;
padding: 20px 60px;
font-family: 'DM Sans', sans-serif;
font-size: 13px;
font-weight: 500;
letter-spacing: 0.15em;
text-transform: uppercase;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
margin-bottom: 20px;
}
.btn-large:hover {
background: var(--sage);
transform: translateY(-2px);
}
.delivery-note {
font-size: 13px;
color: var(--muted);
}
/* FOOTER */
footer {
background: var(--dark-sage);
padding: 36px 80px;
display: flex;
justify-content: space-between;
align-items: center;
}
footer p {
font-size: 12px;
color: rgba(255,255,255,0.3);
letter-spacing: 0.1em;
}
/* ANIMATIONS */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes floatIn {
from { opacity: 0; transform: translateY(32px) rotate(-2deg); }
to { opacity: 1; transform: translateY(0) rotate(0deg); }
}
/* RESPONSIVE */
@media (max-width: 900px) {
.hero { grid-template-columns: 1fr; padding: 60px 32px; min-height: auto; gap: 48px; }
.hero-book img { max-width: 240px; margin: 0 auto; }
.trust-bar { padding: 24px 32px; gap: 24px; }
.intro { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
.contents { padding: 60px 32px; }
.contents-grid { grid-template-columns: 1fr; }
.for-you { padding: 60px 32px; }
.for-you-grid { grid-template-columns: 1fr; }
.final-cta { padding: 80px 32px; }
footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px; }
}
</style>
</head>
<body>
<!-- HERO -->
<section class="hero">
<div class="hero-book">
<img src="/mnt/user-data/uploads/ee.png" alt="Energetic Explorers Ebook Cover" />
</div>
<div class="hero-content">
<span class="brand-tag">Energetic Easts · Holly East</span>
<h1 class="hero-title">Energetic Explorers</h1>
<p class="hero-subtitle">A Family's Guide to Traveling with Infants and Toddlers</p>
<div class="hero-divider"></div>
<p class="hero-hook">Every question you have ever had about traveling with little kids — <strong>answered in one place.</strong> From your baby's first passport to navigating food allergies abroad, this is the only guide you need.</p>
<div class="hero-cta-wrap">
<a href="#buy" class="btn-primary">Get Instant Access</a>
<div class="price-tag">$37 <span>One-time purchase</span></div>
</div>
</div>
</section>
<!-- TRUST BAR -->
<div class="trust-bar">
<div class="trust-item"><span>📖</span> 80+ Pages</div>
<div class="trust-item"><span>✈️</span> Every Stage Covered</div>
<div class="trust-item"><span>📍</span> Google Map Pins Included</div>
<div class="trust-item"><span>📋</span> Templates + Packing Lists</div>
<div class="trust-item"><span>⬇️</span> Instant Digital Download</div>
</div>
<!-- INTRO -->
<section class="intro">
<div>
<span class="section-label">About this guide</span>
<h2 class="section-title">The travel guide you wished existed when you had your first baby</h2>
<div class="body-text">
<p>Traveling with little kids is one of the most rewarding things you can do as a family. It is also one of the most overwhelming things to plan — especially the first time.</p>
<p>This guide covers <strong>everything.</strong> Not just the fun stuff. The real stuff — like what to do if your baby has a severe food allergy abroad, how to actually survive a long haul flight with a toddler, what to pack in your carry-on, and how to build an itinerary that works for little legs and short attention spans.</p>
<p>Written by a mom who has traveled internationally with babies, toddlers, and young kids — and learned a lot the hard way so you don't have to.</p>
</div>
</div>
<div class="intro-stats">
<div class="stat-box">
<div class="stat-number">80+</div>
<div class="stat-label">Pages of Real Advice</div>
</div>
<div class="stat-box">
<div class="stat-number">6</div>
<div class="stat-label">Major Categories</div>
</div>
<div class="stat-box">
<div class="stat-number">∞</div>
<div class="stat-label">Trips You'll Use This For</div>
</div>
<div class="stat-box">
<div class="stat-number">1</div>
<div class="stat-label">Place to Find It All</div>
</div>
</div>
</section>
<!-- WHAT'S INSIDE -->
<section class="contents">
<div class="contents-header">
<span class="section-label">What's inside</span>
<h2 class="section-title">Six categories. Everything covered.</h2>
</div>
<div class="contents-grid">
<div class="content-card">
<span class="card-emoji">🗺️</span>
<h3 class="card-title">Planning</h3>
<ul class="card-list">
<li>Passports + other documents</li>
<li>Baby's first passport</li>
<li>Choosing your destination</li>
<li>Booking flights + accommodations</li>
<li>Unique family stays</li>
<li>Building your itinerary</li>
<li>Making reservations</li>
<li>Travel apps</li>
<li>Google Maps</li>
</ul>
</div>
<div class="content-card">
<span class="card-emoji">🎒</span>
<h3 class="card-title">Packing</h3>
<ul class="card-list">
<li>Carry-on for baby + toddler</li>
<li>Car seats + strollers</li>
<li>Renting baby gear abroad</li>
<li>Entertainment by age</li>
<li>Mama's bag essentials</li>
<li>Medicine bag</li>
<li>Example packing lists</li>
<li>Travel tips with toddlers</li>
<li>Snacks</li>
</ul>
</div>
<div class="content-card">
<span class="card-emoji">✈️</span>
<h3 class="card-title">Traveling</h3>
<ul class="card-list">
<li>Flying with kids — every age</li>
<li>Flight hacks + airport security</li>
<li>Flying while pregnant</li>
<li>Formula or breastfeeding on board</li>
<li>Lap seat vs own seat</li>
<li>Boarding with kids</li>
<li>Potty training + travel</li>
<li>Road trip essentials + entertainment</li>
<li>Layovers with kids</li>
</ul>
</div>
<div class="content-card">
<span class="card-emoji">🌍</span>
<h3 class="card-title">Destination</h3>
<ul class="card-list">
<li>Beating jet lag with little ones</li>
<li>Sleeping arrangements abroad</li>
<li>Making a plan on the ground</li>
<li>Souvenir ideas</li>
</ul>
</div>
<div class="content-card">
<span class="card-emoji">🥜</span>
<h3 class="card-title">Food Allergies</h3>
<ul class="card-list">
<li>Food allergy travel tips</li>
<li>Allergy cards</li>
<li>Restaurant cards</li>
</ul>
</div>
<div class="content-card">
<span class="card-emoji">📋</span>
<h3 class="card-title">Resources</h3>
<ul class="card-list">
<li>Trip planning templates</li>
<li>Packing lists</li>
<li>Google Map pins</li>
<li>Destination mini guides</li>
<li>Facebook community access</li>
</ul>
</div>
</div>
</section>
<!-- FOR YOU -->
<section class="for-you">
<div class="for-you-header">
<span class="section-label">Is this for you?</span>
<h2 class="section-title">This guide is for you if...</h2>
</div>
<div class="for-you-grid">
<div class="for-you-item">
<div class="check">✓</div>
<p>You are taking your first trip with a baby or toddler and have no idea where to start</p>
</div>
<div class="for-you-item">
<div class="check">✓</div>
<p>You are nervous about flying with a little one and want to feel completely prepared</p>
</div>
<div class="for-you-item">
<div class="check">✓</div>
<p>You are managing a food allergy and need practical, real advice for traveling safely</p>
</div>
<div class="for-you-item">
<div class="check">✓</div>
<p>You want one place that has everything — not 47 browser tabs open at once</p>
</div>
<div class="for-you-item">
<div class="check">✓</div>
<p>You want to travel as a family but feel like it is too hard or too complicated with little kids</p>
</div>
<div class="for-you-item">
<div class="check">✓</div>
<p>You want real advice from a mom who has actually done it — not generic tips from a blog</p>
</div>
</div>
</section>
<!-- FINAL CTA -->
<section class="final-cta" id="buy">
<span class="section-label">Get the guide</span>
<h2>Everything you need to travel confidently with your little ones</h2>
<p>80+ pages of real, practical advice for every stage — from your baby's first passport to surviving long haul flights, road trips, and everything in between.</p>
<div class="price-block">
<div class="big-price">$37</div>
<div class="price-note">One-time purchase — yours to keep forever</div>
</div>
<a href="#" class="btn-large">Get Instant Access</a>
<p class="delivery-note">Digital download — delivered instantly to your inbox</p>
</section>
<footer>
<p>© Energetic Easts — Holly East</p>
<p>@energeticeasts</p>
</footer>
</body>
</html>