<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DonnyLB — Detroit Food & Lifestyle Creator</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Instrument+Sans:wght@300;400;500&family=Playfair+Display:ital@1&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F3ED;
  --parchment: #EDE7DC;
  --warm-white: #FAF8F5;
  --ink: #1C1814;
  --brown: #3D2B1F;
  --muted: #8A7B6F;
  --accent: #B8854A;
  --accent-light: #D4A96A;
  --rule: #D6CBBC;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 4rem;
  background: rgba(247, 243, 237, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.6rem 1.5rem !important;
  letter-spacing: 2px !important;
  transition: background 0.25s !important;
}

.nav-cta:hover { background: var(--brown) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 6rem 4rem;
  border-right: 1px solid var(--rule);
  position: relative;
}

.hero-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 2.25rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: all 0.25s;
}

.btn-dark:hover {
  background: transparent;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 0.9rem 2.25rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rule);
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-right {
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-right-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,133,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(61,43,31,0.05) 0%, transparent 60%);
}

.hero-big-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16vw;
  font-weight: 300;
  color: rgba(28,24,20,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 65vh;
  background: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.6s;
}

.hero-photo-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 2px;
}

.hero-caption {
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.hero-caption p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown);
  line-height: 1.5;
}

.hero-caption span {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 0.5rem;
}

/* ─── MARQUEE ─── */
.marquee-bar {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 3rem;
  opacity: 0.6;
}

.marquee-track span.dot {
  opacity: 0.3;
  padding: 0;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS SHARED ─── */
section { position: relative; }

.section-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.section-heading em {
  font-style: italic;
  color: var(--accent);
}

.section-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
}

hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ─── ABOUT ─── */
.about {
  background: var(--warm-white);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-text .section-heading { margin-bottom: 1.75rem; }
.about-text p { margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }

.about-visual-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--parchment);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.about-img::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 4px;
  background: var(--accent);
}

.about-float-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--ink);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
  max-width: 180px;
}

/* ─── SERVICES ─── */
.services {
  padding: 7rem 4rem;
  background: var(--cream);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s;
  cursor: default;
}

.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-child(4), .service-item:nth-child(5), .service-item:nth-child(6) { border-bottom: none; }

.service-item:hover { background: var(--warm-white); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: var(--accent-light);
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  display: block;
}

.service-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-item p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
}

/* ─── BRANDS ─── */
.brands {
  background: var(--parchment);
  padding: 7rem 4rem;
}

.brands-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.brand-cell {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}

.brand-cell:hover {
  background: var(--ink);
  color: var(--cream);
}

.brand-cell:nth-child(3n) { border-right: none; }
.brand-cell:last-child,
.brand-cell:nth-last-child(2),
.brand-cell:nth-last-child(3) { border-bottom: none; }

/* ─── CONTACT ─── */
.contact {
  background: var(--ink);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: 'LETS\00a0WORK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18vw;
  font-weight: 300;
  color: rgba(247,243,237,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
}

.contact .section-label { color: var(--accent-light); }
.contact .section-heading { color: var(--cream); margin-bottom: 1.5rem; }
.contact .section-heading em { color: var(--accent-light); }

.contact-sub {
  font-size: 0.95rem;
  color: rgba(247,243,237,0.5);
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.contact-email-link {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(247,243,237,0.25);
  padding-bottom: 6px;
  letter-spacing: 1px;
  transition: border-color 0.25s, color 0.25s;
  margin-bottom: 3.5rem;
}

.contact-email-link:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.social-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-row a {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(247,243,237,0.4);
  text-decoration: none;
  transition: color 0.25s;
}

.social-row a:hover { color: var(--accent-light); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(247,243,237,0.08);
  padding: 1.75rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(247,243,237,0.3);
}

footer .f-copy {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: rgba(247,243,237,0.2);
  text-transform: uppercase;
}

footer .f-city {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(247,243,237,0.25);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a:not(.nav-cta) { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 1.5rem 3rem; border-right: none; border-bottom: 1px solid var(--rule); }
  .hero-right { padding: 2rem 1.5rem 3rem; }
  .hero-photo-placeholder { max-height: 50vw; }

  .about { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .about-float-tag { right: 0; bottom: -1rem; }

  .services { padding: 4rem 1.5rem; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-item:nth-child(3n) { border-right: 1px solid var(--rule); }
  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-child(4), .service-item:nth-child(5), .service-item:nth-child(6) { border-bottom: 1px solid var(--rule); }
  .service-item:nth-child(5), .service-item:nth-child(6) { border-bottom: none; }

  .brands { padding: 4rem 1.5rem; }
  .brands-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-cell:nth-child(3n) { border-right: 1px solid var(--rule); }
  .brand-cell:nth-child(2n) { border-right: none; }

  .contact { padding: 5rem 1.5rem; }
  footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
</style>
</head>
<body>

<!-- NAV -->
<nav>
  <a href="#" class="nav-logo">Donny<em>LB</em></a>
  <div class="nav-links">
    <a href="#about">About</a>
    <a href="#services">Work</a>
    <a href="#brands">Brands</a>
    <a href="#contact" class="nav-cta">Let's Work</a>
  </div>
</nav>

<!-- HERO -->
<section class="hero">
  <div class="hero-left">
    <span class="hero-eyebrow">Detroit Food & Lifestyle Creator</span>
    <h1>Content<br>That <em>Moves</em><br>People.</h1>
    <p class="hero-desc">Authentic storytelling rooted in Detroit culture. Food, lifestyle, and travel content that builds real audiences — and real results for brands.</p>
    <div class="hero-actions">
      <a href="#contact" class="btn-dark">Work With Me</a>
      <a href="#services" class="btn-ghost">See My Work</a>
    </div>
    <div class="hero-stats">
      <div>
        <div class="stat-val">48K</div>
        <div class="stat-lbl">Instagram</div>
      </div>
      <div>
        <div class="stat-val">27K</div>
        <div class="stat-lbl">TikTok</div>
      </div>
      <div>
        <div class="stat-val">Detroit</div>
        <div class="stat-lbl">Based</div>
      </div>
    </div>
  </div>
  <div class="hero-right">
    <div class="hero-right-bg"></div>
    <div class="hero-big-text">DLB</div>
    <div class="hero-photo-placeholder">
      <span>Your Photo Here</span>
    </div>
    <div class="hero-caption">
      <p>"Detroit's food scene, served with personality."</p>
      <span>Food · Lifestyle · Travel · Culture</span>
    </div>
  </div>
</section>

<hr class="rule">

<!-- MARQUEE -->
<div class="marquee-bar" aria-hidden="true">
  <div class="marquee-track">
    <span>Brand Partnerships</span><span class="dot">·</span>
    <span>UGC Creation</span><span class="dot">·</span>
    <span>Food Content</span><span class="dot">·</span>
    <span>Event Hosting</span><span class="dot">·</span>
    <span>Travel & Lifestyle</span><span class="dot">·</span>
    <span>Detroit Based</span><span class="dot">·</span>
    <span>Podcast</span><span class="dot">·</span>
    <span>Brand Partnerships</span><span class="dot">·</span>
    <span>UGC Creation</span><span class="dot">·</span>
    <span>Food Content</span><span class="dot">·</span>
    <span>Event Hosting</span><span class="dot">·</span>
    <span>Travel & Lifestyle</span><span class="dot">·</span>
    <span>Detroit Based</span><span class="dot">·</span>
    <span>Podcast</span><span class="dot">·</span>
  </div>
</div>

<!-- ABOUT -->
<section class="about" id="about">
  <div class="about-text">
    <span class="section-label">Who I Am</span>
    <h2 class="section-heading">Detroit's<br><em>Food Voice.</em></h2>
    <div class="section-body">
      <p>I'm Donny — a Detroit-based content creator, multimedia producer, and food obsessive with a camera and something to say about every plate that crosses my path.</p>
      <p style="margin-top:1rem;">My content blends genuine Detroit culture with a charming, funny, and relatable voice that audiences actually trust. That trust is what I bring to every brand partnership.</p>
      <p style="margin-top:1rem;">From restaurant reviews to brand campaigns, lifestyle shoots to travel — I create with intention and deliver results that speak for themselves.</p>
    </div>
  </div>
  <div class="about-visual-wrap">
    <div class="about-img">
      <span>Your Photo Here</span>
    </div>
    <div class="about-float-tag">
      <em>"Food as the hook.<br>Detroit as the soul."</em>
    </div>
  </div>
</section>

<hr class="rule">

<!-- SERVICES -->
<section class="services" id="services">
  <div class="services-header">
    <div>
      <span class="section-label">What I Do</span>
      <h2 class="section-heading">Creative<br><em>Services.</em></h2>
    </div>
    <p class="section-body">From single hero assets to full content libraries — every deliverable is crafted with purpose, shot with a Canon R6, and backed by a film and editing background.</p>
  </div>
  <div class="services-grid">
    <div class="service-item">
      <span class="service-num">01</span>
      <h3>Brand Campaigns</h3>
      <p>Sponsored content, product integrations, and campaign storytelling built around authentic audience connection.</p>
    </div>
    <div class="service-item">
      <span class="service-num">02</span>
      <h3>UGC Creation</h3>
      <p>High-converting user generated content for brands to deploy across paid and organic channels.</p>
    </div>
    <div class="service-item">
      <span class="service-num">03</span>
      <h3>Food & Restaurant</h3>
      <p>Detroit's go-to creator for food content. Reviews, partnerships, events, and everything in between.</p>
    </div>
    <div class="service-item">
      <span class="service-num">04</span>
      <h3>Travel & Lifestyle</h3>
      <p>Destination campaigns, hotel partnerships, and lifestyle content that inspires and converts.</p>
    </div>
    <div class="service-item">
      <span class="service-num">05</span>
      <h3>Hosting & Events</h3>
      <p>Event hosting, brand activations, and live experiences — from karaoke nights to influencer field trips.</p>
    </div>
    <div class="service-item">
      <span class="service-num">06</span>
      <h3>Foodie Bros. Podcast</h3>
      <p>Food as the hook, host chemistry as the product. Sponsorship and integration opportunities available.</p>
    </div>
  </div>
</section>

<hr class="rule">

<!-- BRANDS -->
<section class="brands" id="brands">
  <div class="brands-inner">
    <div>
      <span class="section-label">Past Partners</span>
      <h2 class="section-heading">Trusted<br><em>By Brands.</em></h2>
      <p class="section-body" style="margin-top:1.5rem;">A track record of successful campaigns across food, lifestyle, travel, and consumer brands — local to national.</p>
    </div>
    <div class="brands-grid">
      <div class="brand-cell">Chevrolet</div>
      <div class="brand-cell">MGM Rewards</div>
      <div class="brand-cell">Biggby Coffee</div>
      <div class="brand-cell">Walmart</div>
      <div class="brand-cell">McDonald's</div>
      <div class="brand-cell">Virgin Voyages</div>
      <div class="brand-cell">Broadway in Detroit</div>
      <div class="brand-cell">Henry Ford Museum</div>
      <div class="brand-cell">Visit Detroit</div>
      <div class="brand-cell">Motor City Casino Hotel</div>
      <div class="brand-cell">Ollie's</div>
      <div class="brand-cell">Del Taco</div>
      <div class="brand-cell">Detroit Free Press Marathon</div>
      <div class="brand-cell">Ro Body</div>
      <div class="brand-cell">Qahwati Coffee</div>
    </div>
  </div>
</section>

<hr class="rule">

<!-- CONTACT -->
<section class="contact" id="contact">
  <span class="section-label">Get In Touch</span>
  <h2 class="section-heading">Let's <em>Work.</em></h2>
  <p class="contact-sub">Brand partnerships, UGC deals, event hosting, and collaborations. Reach out and let's build something together.</p>
  <br>
  <a href="mailto:partnerships@donnylb.com" class="contact-email-link">partnerships@donnylb.com</a>
  <div class="social-row">
    <a href="https://instagram.com/DonnyLB" target="_blank">Instagram</a>
    <a href="https://tiktok.com/@DonnyLB" target="_blank">TikTok</a>
    <a href="https://youtube.com/@DonnyLB" target="_blank">YouTube</a>
  </div>
</section>

<footer>
  <span class="f-logo">DonnyLB</span>
  <span class="f-copy">© 2026 DonnyLB · All Rights Reserved</span>
  <span class="f-city">Detroit, Michigan</span>
</footer>

</body>
</html>
