<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”utf-8″ />
<meta name=”viewport” content=”width=device-width, initial-scale=1″ />
<title>Battlefield Lifestyle Magazine</title>

<!–
HOW TO USE (WordPress):
1) Create / edit your Home page.
2) Add a “Custom HTML” block and paste EVERYTHING from <body>…</body>.
3) Go to Appearance β†’ Customizer β†’ Additional CSS and paste EVERYTHING inside <style>…</style>.
4) Upload your images / PDFs to the Media Library and replace any URL that starts with REPLACE_ME.
–>

<style>
/* ===== BRAND TOKENS ===== */
:root{
–green-900: #2b3b1f; /* deep backdrop */
–green-950: #0f1a10; /* near-black green */
–brand-green: #50732e; /* provided brand green */
–gold-400: #FFD700; /* primary gold */
–gold-500: #FFC300; /* hover gold */
–tan-200: #d2b48c; /* newsletter panel */
–black: #000000;
–white: #ffffff;
}

/* Optional: Armalite Rifle heading font (replace URLs with your uploaded font asset paths) */
@font-face {
font-family: “Armalite Rifle”;
src: url(REPLACE_ME_FONT_WOFF2) format(“woff2”);
font-weight: 700;
font-style: normal;
font-display: swap;
}

/* ===== BASE ===== */
html, body { margin:0; padding:0; }
body {
background: var(–black);
color: var(–white);
font-family: system-ui, -apple-system, Segoe UI, Roboto, “Helvetica Neue”, Arial, “Noto Sans”, “Apple Color Emoji”, “Segoe UI Emoji”, “Segoe UI Symbol”;
line-height: 1.5;
}
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.site-header { position: sticky; top:0; z-index: 50; backdrop-filter: blur(4px); background: color-mix(in srgb, var(–green-950) 90%, transparent); border-bottom: 1px solid rgba(16,32,16,.4); }
.nav { display:flex; gap:10px; flex-wrap: wrap; justify-content: center; }
.nav a { padding: 8px 14px; border-radius: 12px; font-weight: 700; transition: .2s ease; }
.nav a:is(:hover,:focus) { color: var(–gold-400); background: #1c2a18; }

.brand { font-family: “Armalite Rifle”, inherit; font-weight: 800; letter-spacing: .02em; }
.brand-tag { color: var(–gold-400); font-style: italic; margin-top: 6px; }

/* ===== ANNOUNCEMENT ===== */
.announce { background: var(–green-950); color: var(–gold-400); text-align: center; padding: 8px 16px; font-size: 0.95rem; border-top: 4px solid var(–gold-400); }
.announce a { text-decoration: underline; }

/* ===== HERO ===== */
.hero { border-bottom: 1px solid rgba(16,32,16,.4); }
.hero-grid { display:grid; grid-template-columns: 1fr; gap: 28px; padding: 60px 0; }
@media (min-width: 860px){ .hero-grid{ grid-template-columns: 1fr 1fr; padding: 96px 0; gap: 40px; } }

.hero-title { font-size: clamp(28px, 3.6vw, 56px); font-weight: 900; line-height: 1.1; }
.hero-title .gold { color: var(–gold-400); letter-spacing: .06em; text-transform: uppercase; }
.hero-underline { height: 4px; width: 96px; background: var(–gold-400); border-radius: 999px; margin-top: 14px; }
.hero-text { color: #c7cfd0; max-width: 62ch; margin-top: 16px; }
.btn-row { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.btn { padding: 12px 18px; border-radius: 16px; font-weight: 700; display:inline-block; text-align:center; }
.btn-gold { background: var(–gold-400); color: #111; box-shadow: 0 6px 16px rgba(255,215,0,.12); }
.btn-gold:hover { background: var(–gold-500); }

.hero-card { border: 1px solid rgba(16,32,16,.6); background: linear-gradient(135deg, rgba(16,32,16,.4), #000); border-radius: 20px; padding: 20px; }
.cover-aspect { position: relative; aspect-ratio: 4 / 3; background: rgba(0,0,0,.35); border-radius: 16px; overflow: hidden; }

/* ===== QUICK LINKS ===== */
.quick { padding: 36px 0; }
.ql-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (min-width: 860px){ .ql-grid{ grid-template-columns: repeat(4,1fr);} }
.ql-card { border: 1px solid rgba(16,32,16,.6); background: rgba(16,32,16,.4); border-radius: 16px; padding: 16px; transition:.2s ease; }
.ql-card:hover{ background: #162215; }
.ql-thumb { height: 130px; border-radius: 12px; object-fit: cover; margin-bottom: 10px; }
.ql-title { font-weight: 700; }
.ql-sub { color:#b5bcbc; font-size: .9rem; }

/* ===== STATS ===== */
.stats { background: rgba(16,32,16,.4); border-block: 1px solid rgba(16,32,16,.4); }
.stats-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 24px; text-align:center; padding: 40px 0; }
@media (min-width: 860px){ .stats-grid{ grid-template-columns: repeat(4,1fr);} }
.stat-v { color: var(–gold-400); font-size: clamp(28px,3vw,40px); font-weight: 900; }
.stat-k { color:#c7cfd0; text-transform: uppercase; letter-spacing: .1em; font-size:.9rem; }

/* ===== FEATURED STORIES ===== */
.section { padding: 52px 0; }
.section-h { display:flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.viewall { color: var(–gold-400); text-decoration: underline; }
.fs-grid { display:grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 860px){ .fs-grid{ grid-template-columns: repeat(3,1fr);} }
.story { border: 1px solid rgba(16,32,16,.6); background: rgba(16,32,16,.3); border-radius: 18px; overflow:hidden; transition:.2s ease; }
.story:hover{ background: rgba(16,32,16,.5); }
.story-media{ aspect-ratio: 16 / 9; background: rgba(0,0,0,.4); display:grid; place-items:center; color:#777; }
.story-body{ padding: 20px; }
.story h4{ margin:0; font-weight: 800; }
.story p{ margin:10px 0 0; color:#c7cfd0; font-size:.95rem; }
.badge{ display:inline-flex; align-items:center; gap:6px; font-size:.72rem; background: var(–gold-500); color:#111; padding:4px 8px; border-radius:8px; margin-left: 6px; }

/* ===== VIDEO ===== */
.video-card{ border: 1px solid rgba(16,32,16,.6); border-radius: 18px; overflow:hidden; }
.video-head{ background: rgba(16,32,16,.4); display:flex; align-items:center; justify-content:space-between; padding: 12px 16px; }
.video-embed{ aspect-ratio: 16 / 9; background:#111; }

/* ===== TESTIMONIAL ===== */
.testi{ border-top: 1px solid rgba(16,32,16,.4); text-align:center; padding: 48px 0; }
.testi blockquote{ font-size: clamp(18px,2.4vw,28px); color:#e6ecec; font-style: italic; margin:0; }
.testi cite{ display:block; margin-top:10px; color: var(–gold-400); font-weight:700; }

/* ===== NEWSLETTER ===== */
.newsletter{ background: var(–tan-200); color:#111; }
.nl-grid{ display:grid; grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
@media (min-width: 860px){ .nl-grid{ grid-template-columns: 1fr 1fr; } }
.nl-input{ padding: 12px 14px; border: 2px solid var(–gold-400); border-right: 0; border-radius: 12px 0 0 12px; }
.nl-btn{ padding: 12px 16px; border-radius: 0 12px 12px 0; background: var(–green-950); color:#fff; font-weight:700; border: 2px solid var(–green-950); }

/* ===== FOOTER ===== */
.site-footer{ text-align:center; color:#b5bcbc; padding: 26px 0 60px; border-top: 1px solid rgba(16,32,16,.4); }
.social a{ margin: 0 10px; }
.social a:hover{ color: var(–gold-400); }
</style>
</head>
<body>
<!– HEADER –>
<header class=”site-header”>
<div class=”wrap” style=”padding: 18px 16px; display:grid; gap:10px; align-items:center; grid-template-columns: 1fr;”>
<div>
<div class=”brand” style=”font-size: clamp(24px,3.2vw,40px);”>Battlefield Lifestyle Magazine</div>
<div class=”brand-tag”>Resilience in Every Story, Strength in Every Page.</div>
</div>
<nav class=”nav” aria-label=”Primary”>
<a href=”#home”>Home</a>
<a href=”#magazine”>Magazine</a>
<a href=”#events”>Events</a>
<a href=”#about”>About</a>
<a href=”#shop”>Shop</a>
<a href=”#sponsor”>Sponsor Us</a>
<a href=”#contact”>Contact</a>
<a href=”#style”>Style Guide</a>
</nav>
</div>
</header>

<!– ANNOUNCEMENT –>
<div class=”announce”>
🎟️ 2nd Annual Battlefield Lifestyle Summit β€” November β€’
<a href=”REPLACE_ME_TICKETS_URL”>Get Tickets</a> β€’
<a href=”REPLACE_ME_SPONSOR_URL”>Become a Sponsor</a>
</div>

<!– HERO –>
<section id=”home” class=”hero”>
<div class=”wrap hero-grid”>
<div>
<h1 class=”hero-title”>
<span class=”gold”>Stories of Resilience</span>.<br/>
<span class=”gold”>Lives of Strength</span>.
</h1>
<div class=”hero-underline”></div>
<p class=”hero-text”>
Battlefield Lifestyle Magazine amplifies veteran voices β€” from the battlefield to business, family, and beyond. Dive into interviews, guidance, and community built on resilience.
</p>
<div class=”btn-row”>
<a class=”btn btn-gold” href=”REPLACE_ME_LATEST_ISSUE_PDF” target=”_blank” rel=”noopener”>Read Latest Issue</a>
</div>
<p style=”margin-top:8px;color:#98a0a0;font-size:12px; font-style: italic;”>Resilience in Every Story, Strength in Every Page.</p>
</div>

<div class=”hero-card”>
<div class=”cover-aspect”>
<!– Replace src with your Media Library URL for the cover image –>
<img src=”REPLACE_ME_COVER_IMAGE” alt=”Current Magazine Cover” />
</div>
</div>
</div>
</section>

<!– QUICK LINKS –>
<section class=”quick”>
<div class=”wrap ql-grid”>
<a class=”ql-card” href=”REPLACE_ME_LATEST_ISSUE_PDF” target=”_blank” rel=”noopener”>
<img class=”ql-thumb” src=”REPLACE_ME_SILENT_THUMB” alt=”Latest Issue” />
<div class=”ql-title”>Latest Issue</div>
<div class=”ql-sub”>Silent Professional</div>
</a>
<a class=”ql-card” href=”#events”>
<div class=”ql-title”>Summit</div>
<div class=”ql-sub”>Nov β€’ Tickets</div>
</a>
<a class=”ql-card” href=”#shop”>
<div class=”ql-title”>Shop</div>
<div class=”ql-sub”>Tees & Notebooks</div>
</a>
<a class=”ql-card” href=”REPLACE_ME_YOUTUBE_URL” target=”_blank” rel=”noopener”>
<div class=”ql-title”>YouTube</div>
<div class=”ql-sub”>Behind the scenes</div>
</a>
</div>
</section>

<!– STATS –>
<section class=”stats”>
<div class=”wrap stats-grid”>
<div>
<div class=”stat-v”>12+</div>
<div class=”stat-k”>Issues</div>
</div>
<div>
<div class=”stat-v”>150+</div>
<div class=”stat-k”>Stories</div>
</div>
<div>
<div class=”stat-v”>10k+</div>
<div class=”stat-k”>Community</div>
</div>
<div>
<div class=”stat-v”>2yrs</div>
<div class=”stat-k”>Events</div>
</div>
</div>
</section>

<!– FEATURED STORIES –>
<section class=”section” id=”magazine”>
<div class=”wrap”>
<div class=”section-h”>
<h2 style=”margin:0; font-size: clamp(22px,2.4vw,32px); font-weight: 900;”>Featured Stories</h2>
<a class=”viewall” href=”REPLACE_ME_ALL_STORIES_URL”>View all</a>
</div>

<div class=”fs-grid”>
<!– Story 1: Summit Part 1 (PDF) –>
<article class=”story”>
<div class=”story-media”>
<img src=”REPLACE_ME_SUMMIT1_THUMB” alt=”Battlefield Lifestyle Summit (Part 1)”>
</div>
<div class=”story-body”>
<h4>Battlefield Lifestyle Summit (Part 1)</h4>
<p>β€œI had to play monopoly with my mission. I knew there was no get out of jail card; it was get out and prevail.” β€” Lonyae McCune</p>
<a class=”btn btn-gold” href=”REPLACE_ME_SUMMIT1_PDF” target=”_blank” rel=”noopener”>Read</a>
<span class=”badge” aria-hidden=”true”>
<!– simple download icon –>
<svg width=”14″ height=”14″ viewBox=”0 0 24 24″ fill=”none” stroke=”currentColor” stroke-width=”2″ stroke-linecap=”round” stroke-linejoin=”round”><path d=”M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4″/><polyline points=”7 10 12 15 17 10″/><line x1=”12″ y1=”15″ x2=”12″ y2=”3″/></svg>
PDF
</span>
</div>
</article>

<!– Story 2: Summit Part 2 (PDF) –>
<article class=”story”>
<div class=”story-media”>
<img src=”REPLACE_ME_SUMMIT2_THUMB” alt=”Battlefield Lifestyle Summit (Part 2)”>
</div>
<div class=”story-body”>
<h4>Battlefield Lifestyle Summit (Part 2)</h4>
<p>Voices united, resilience celebrated. Summit 2 dives deeper into the stories of veterans who transform struggle into strength, building bridges between service and success.</p>
<a class=”btn btn-gold” href=”REPLACE_ME_SUMMIT2_PDF” target=”_blank” rel=”noopener”>Read</a>
<!– Omit badge here per your preference –>
</div>
</article>

<!– Story 3: Silent Professional (Latest Issue) –>
<article class=”story”>
<div class=”story-media”>
<img src=”REPLACE_ME_SILENT_THUMB” alt=”Silent Professional”>
</div>
<div class=”story-body”>
<h4>Silent Professional</h4>
<p>Delivering a powerful punch β€” inside the pages of Battlefield Lifestyle Magazine.</p>
<a class=”btn btn-gold” href=”REPLACE_ME_LATEST_ISSUE_PDF” target=”_blank” rel=”noopener”>Read</a>
</div>
</article>

<!– Story 4: Resilient Journey (Article) –>
<article class=”story”>
<div class=”story-media”>
<img src=”REPLACE_ME_RESILIENT_THUMB” alt=”Resilient Journey”>
</div>
<div class=”story-body”>
<h4>Resilient Journey</h4>
<p>How one veteran turned obstacles into opportunity and built community.</p>
<a class=”btn btn-gold” href=”REPLACE_ME_RESILIENT_URL”>Read</a>
</div>
</article>
</div>
</div>
</section>

<!– VIDEO / YOUTUBE –>
<section class=”section”>
<div class=”wrap video-card”>
<div class=”video-head”>
<div style=”font-weight: 800;”>Latest from YouTube</div>
<a class=”viewall” href=”REPLACE_ME_YOUTUBE_URL” target=”_blank” rel=”noopener”>Open channel</a>
</div>
<div class=”video-embed”>
<iframe src=”https://www.youtube.com/embed/VIDEO_ID” title=”YouTube video” loading=”lazy” style=”width:100%;height:100%;border:0;”></iframe>
</div>
</div>
</section>

<!– TESTIMONIAL –>
<section class=”testi”>
<div class=”wrap”>
<blockquote>β€œThis magazine reminded me that my service is more than a chapter β€” it’s a foundation for everything I’m building now.”</blockquote>
<cite>β€” U.S. Army Veteran</cite>
</div>
</section>

<!– NEWSLETTER –>
<section class=”newsletter”>
<div class=”wrap nl-grid”>
<div>
<h3 style=”margin:0 0 6px 0; font-size: clamp(18px,2.2vw,28px); font-weight:900; color: var(–gold-400);”>Join Our Community</h3>
<p style=”margin:0;”>Get new stories, events, and resources in your inbox.</p>
</div>
<form action=”#” method=”post” class=”nl-form” onsubmit=”return false” style=”display:flex;”>
<input type=”email” class=”nl-input” placeholder=”you@example.com” required>
<button class=”nl-btn” type=”submit”>Subscribe</button>
</form>
</div>
</section>

<!– FOOTER –>
<footer class=”site-footer”>
<div class=”wrap”>
<div>Β© 2025 Battlefield Lifestyle Magazine</div>
<div class=”social” style=”margin-top: 10px;”>
<a href=”REPLACE_ME_FACEBOOK” target=”_blank” rel=”noopener”>Facebook</a>
<a href=”REPLACE_ME_LINKEDIN” target=”_blank” rel=”noopener”>LinkedIn</a>
<a href=”REPLACE_ME_YOUTUBE_URL” target=”_blank” rel=”noopener”>YouTube</a>
</div>
</div>
</footer>
</body>
</html>