← back to Rentv Bloom Flyers

concepts/concept-1-editorial-media-kit.html

799 lines

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RENTV Media Kit — Editorial</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
  /* ── Reset & base ─────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue:    #16357A;
    --navy:    #0E2350;
    --red:     #D0202E;
    --gold:    #E8A81C;
    --gold-lt: #F5C842;
    --ink:     #141414;
    --paper:   #FFFFFF;
    --gray:    #6B7280;
    --panel:   #F4F6FB;
    --rule:    #D9DFF0;

    /* page */
    --pw: 816px;
    --ph: 1056px;
  }

  html, body {
    width: var(--pw);
    min-height: var(--ph);
    margin: 0;
    padding: 0;
    background: #CBD5E0;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* ── Page shell ───────────────────────────────────────────── */
  .page {
    width: var(--pw);
    height: var(--ph);
    background: var(--paper);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* ── Top accent bar ───────────────────────────────────────── */
  .top-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 40%, var(--gold) 100%);
    flex-shrink: 0;
  }

  /* ── Header ───────────────────────────────────────────────── */
  .header {
    padding: 32px 52px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
  }

  .logo-lockup {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .tagline-sub {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    margin-left: 2px;
  }

  .header-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    padding-top: 6px;
  }

  .header-badge .year-pill {
    background: var(--navy);
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
  }

  .header-badge .kit-label {
    font-size: 9px;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 0.10em;
    text-transform: uppercase;
  }

  /* ── Divider rule ─────────────────────────────────────────── */
  .rule {
    height: 1px;
    background: var(--rule);
    margin: 20px 52px 0;
    flex-shrink: 0;
  }
  .rule-gold {
    height: 2px;
    background: var(--gold);
    margin: 0 52px;
    flex-shrink: 0;
  }

  /* ── Hero block ───────────────────────────────────────────── */
  .hero {
    padding: 26px 52px 0;
    flex-shrink: 0;
  }

  .hero-eyebrow {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
  }

  .hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.14;
    color: var(--navy);
    max-width: 620px;
    margin-bottom: 14px;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--blue);
  }

  .hero-body {
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--gray);
    max-width: 560px;
  }

  /* ── Stat band ────────────────────────────────────────────── */
  .stat-band {
    margin: 22px 52px 0;
    background: var(--navy);
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
  }

  .stat-divider {
    background: rgba(255,255,255,0.12);
    align-self: stretch;
  }

  .stat-cell {
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.01em;
  }

  .stat-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
    margin-top: 3px;
  }

  /* ── Section heading ──────────────────────────────────────── */
  .section-head {
    padding: 20px 52px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .section-head-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
    white-space: nowrap;
  }

  .section-head-rule {
    flex: 1;
    height: 1px;
    background: var(--rule);
  }

  /* ── Products grid ────────────────────────────────────────── */
  .products {
    padding: 12px 52px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    flex-shrink: 0;
  }

  .product-card {
    background: var(--panel);
    border-radius: 5px;
    padding: 14px 16px 13px;
    border-left: 3px solid var(--blue);
    position: relative;
  }

  .product-card.gold-accent {
    border-left-color: var(--gold);
  }

  .product-card.red-accent {
    border-left-color: var(--red);
  }

  .product-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
    opacity: 0.85;
  }

  .product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .product-desc {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--gray);
    margin-bottom: 8px;
  }

  .price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 9.5px;
    line-height: 1.4;
  }

  .price-item .pi-label {
    font-weight: 500;
    color: var(--gray);
  }

  .price-item .pi-val {
    font-weight: 700;
    color: var(--blue);
    font-size: 10px;
    letter-spacing: -0.01em;
  }

  /* wide card: spans 2 cols */
  .product-card.wide {
    grid-column: span 2;
  }
  .product-card.wide .price-list {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 18px;
    row-gap: 3px;
  }

  /* ── Conferences strip ────────────────────────────────────── */
  .conf-section {
    margin: 12px 52px 0;
    background: linear-gradient(100deg, var(--blue) 0%, var(--navy) 100%);
    border-radius: 5px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
  }

  .conf-title-block {
    flex-shrink: 0;
  }

  .conf-label {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
  }

  .conf-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  .conf-price-badge {
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 13px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .conf-divider {
    width: 1px;
    background: rgba(255,255,255,0.18);
    align-self: stretch;
    flex-shrink: 0;
  }

  .conf-events {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
  }

  .conf-event {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .conf-event-name {
    font-size: 9.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  .conf-event-detail {
    font-size: 8.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
  }

  /* ── More products row ────────────────────────────────────── */
  .more-products {
    padding: 10px 52px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    flex-shrink: 0;
  }

  .more-card {
    background: var(--panel);
    border-radius: 5px;
    padding: 13px 16px 12px;
    border-left: 3px solid var(--gray);
  }
  .more-card.gold-accent { border-left-color: var(--gold); }
  .more-card.blue-accent { border-left-color: var(--blue); }

  /* ── Footer ───────────────────────────────────────────────── */
  .footer-rule {
    height: 1px;
    background: var(--rule);
    margin: 14px 52px 0;
    flex-shrink: 0;
  }

  .footer {
    padding: 14px 52px 18px;
    display: grid;
    grid-template-columns: 1fr auto 1px auto;
    gap: 0 24px;
    align-items: start;
    flex-shrink: 0;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .footer-contact-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1px;
  }

  .footer-contact-title {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 5px;
  }

  .contact-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9.5px;
    color: var(--gray);
    font-weight: 400;
    line-height: 1.5;
  }

  .contact-row svg {
    flex-shrink: 0;
    opacity: 0.7;
  }

  .footer-vert-rule {
    width: 1px;
    background: var(--rule);
    align-self: stretch;
  }

  .footer-contact-2 {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .footer-sites {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-self: center;
  }

  .site-link {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: 0.03em;
  }

  .footer-sites-label {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
  }

  /* ── Bottom bar ───────────────────────────────────────────── */
  .bottom-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 60%, var(--navy) 100%);
    margin-top: auto;
    flex-shrink: 0;
  }

  /* ── Print ────────────────────────────────────────────────── */
  @page {
    size: letter;
    margin: 0;
  }

  @media print {
    html, body {
      width: 816px;
      height: 1056px;
      background: none;
    }
    .page {
      box-shadow: none;
    }
  }
</style>
</head>
<body>
<div class="page">

  <!-- Top accent bar -->
  <div class="top-bar"></div>

  <!-- ── HEADER ── -->
  <header class="header">
    <div class="logo-lockup">
      <!-- Inline SVG RENTV logo: blue wordmark in gold ellipse ring -->
      <svg width="190" height="64" viewBox="0 0 190 64" fill="none" xmlns="http://www.w3.org/2000/svg" aria-label="RENTV logo">
        <!-- Outer gold ellipse ring -->
        <ellipse cx="95" cy="32" rx="92" ry="29" fill="none" stroke="#E8A81C" stroke-width="3.5"/>
        <!-- Inner fill so wordmark sits clean -->
        <ellipse cx="95" cy="32" rx="88" ry="25" fill="#FFFFFF"/>
        <!-- RENTV wordmark -->
        <!-- R -->
        <text x="18" y="43" font-family="'Inter', Helvetica, Arial, sans-serif" font-weight="800" font-size="28" fill="#16357A" letter-spacing="-1">RENTV</text>
      </svg>
      <span class="tagline-sub">Real Estate News &amp; Media</span>
    </div>
    <div class="header-badge">
      <span class="year-pill">25 Years of CRE Coverage</span>
      <span class="kit-label">2026 Advertising Media Kit</span>
    </div>
  </header>

  <div class="rule"></div>

  <!-- ── HERO ── -->
  <section class="hero">
    <p class="hero-eyebrow">Cutting Edge Commercial Real Estate Media Coverage</p>
    <h1 class="hero-headline">The CRE industry's news source<br>for 25 years —<br><em>now your ad channel.</em></h1>
    <p class="hero-body">RENTV.com delivers decision-maker access across California, Texas, Arizona, and the Pacific Northwest — the markets where commercial real estate moves. Our audience is your buyer: brokers, developers, investors, lenders, and principals, reached twice a week in their inbox and daily on RENTV.com.</p>
  </section>

  <!-- ── STAT BAND ── -->
  <div class="stat-band" role="list">
    <div class="stat-cell" role="listitem">
      <span class="stat-num">50,000</span>
      <span class="stat-label">NET CRE<br>Professionals</span>
    </div>
    <div class="stat-divider" aria-hidden="true"></div>
    <div class="stat-cell" role="listitem">
      <span class="stat-num">2×</span>
      <span class="stat-label">Per Week<br>Newsletter</span>
    </div>
    <div class="stat-divider" aria-hidden="true"></div>
    <div class="stat-cell" role="listitem">
      <span class="stat-num">25 Yrs</span>
      <span class="stat-label">Constant Contact<br>List Depth</span>
    </div>
    <div class="stat-divider" aria-hidden="true"></div>
    <div class="stat-cell" role="listitem">
      <span class="stat-num">Western US</span>
      <span class="stat-label">CA · TX · AZ<br>Pacific NW</span>
    </div>
  </div>

  <!-- ── ADVERTISING PRODUCTS ── -->
  <div class="section-head">
    <span class="section-head-label">Advertising Products</span>
    <div class="section-head-rule"></div>
  </div>

  <div class="products">

    <!-- Newsletter -->
    <div class="product-card">
      <svg class="product-icon" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
        <rect x="1" y="4" width="20" height="14" rx="2" stroke="#16357A" stroke-width="1.5"/>
        <path d="M1 7l10 7 10-7" stroke="#16357A" stroke-width="1.5" stroke-linejoin="round"/>
      </svg>
      <div class="product-title">Newsletter<br>Banner &amp; Tile Ads</div>
      <div class="product-desc">Placed inside <em>The Real Estate Insider</em> — delivered to 50,000 CRE professionals twice weekly. Fixed advertorials also available.</div>
      <ul class="price-list">
        <li class="price-item"><span class="pi-label">Banner or Tile Ad</span><span class="pi-val">$500–$1,500/mo</span></li>
        <li class="price-item"><span class="pi-label">Fixed Advertorial</span><span class="pi-val">$350/mo</span></li>
      </ul>
    </div>

    <!-- Website Ads -->
    <div class="product-card gold-accent">
      <svg class="product-icon" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
        <rect x="1" y="2" width="20" height="18" rx="2" stroke="#E8A81C" stroke-width="1.5"/>
        <path d="M1 7h20" stroke="#E8A81C" stroke-width="1.5"/>
        <circle cx="4.5" cy="4.5" r="1" fill="#E8A81C"/>
        <circle cx="8" cy="4.5" r="1" fill="#E8A81C"/>
      </svg>
      <div class="product-title">RENTV.com<br>Banner &amp; Tile Ads</div>
      <div class="product-desc">Prime placement on RENTV.com — the Western US CRE news destination. High-traffic property with an engaged, repeat professional readership.</div>
      <ul class="price-list">
        <li class="price-item"><span class="pi-label">Banner or Tile Ad</span><span class="pi-val">$500–$1,500/mo</span></li>
      </ul>
    </div>

    <!-- Home Page Video -->
    <div class="product-card red-accent">
      <svg class="product-icon" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
        <rect x="1" y="3" width="20" height="14" rx="2" stroke="#D0202E" stroke-width="1.5"/>
        <polygon points="9,8 9,13 15,10.5" fill="#D0202E"/>
        <path d="M7 20h8" stroke="#D0202E" stroke-width="1.5" stroke-linecap="round"/>
      </svg>
      <div class="product-title">RENTV Home Page<br>Video Feature</div>
      <div class="product-desc">Your video featured prominently on RENTV.com's homepage — maximum visibility for property tours, project launches, and brand stories.</div>
      <ul class="price-list">
        <li class="price-item"><span class="pi-label">Monthly placement</span><span class="pi-val">$500/mo</span></li>
      </ul>
    </div>

    <!-- Dedicated Eblasts - wide -->
    <div class="product-card wide">
      <svg class="product-icon" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
        <path d="M2 11L11 2l9 9" stroke="#16357A" stroke-width="1.5" stroke-linejoin="round"/>
        <path d="M4 9v9a1 1 0 001 1h4v-4h4v4h4a1 1 0 001-1V9" stroke="#16357A" stroke-width="1.5" stroke-linejoin="round"/>
      </svg>
      <div class="product-title">Dedicated Email Blasts — 50,000 Net Recipients</div>
      <div class="product-desc">Your message, exclusively. Deployed to our full 50,000-name CRE list — built over 25 years on Constant Contact. Three program types available.</div>
      <ul class="price-list">
        <li class="price-item"><span class="pi-label">Marketplace Eblast · 1 send</span><span class="pi-val">$300</span></li>
        <li class="price-item"><span class="pi-label">Marketplace Eblast · 4 sends</span><span class="pi-val">$1,100</span></li>
        <li class="price-item"><span class="pi-label">Marketplace Eblast · 8 sends</span><span class="pi-val">$2,000</span></li>
        <li class="price-item"><span class="pi-label">Property Spotlight · 1 send</span><span class="pi-val">$250</span></li>
        <li class="price-item"><span class="pi-label">Property Spotlight · 4 sends</span><span class="pi-val">$900</span></li>
        <li class="price-item"><span class="pi-label">Property Spotlight · 9 sends</span><span class="pi-val">$1,800</span></li>
        <li class="price-item"><span class="pi-label">Video Promotion · 1 send</span><span class="pi-val">$250</span></li>
        <li class="price-item"><span class="pi-label">Video Promotion · 4 sends</span><span class="pi-val">$900</span></li>
        <li class="price-item"><span class="pi-label">Video Promotion · 9 sends</span><span class="pi-val">$1,800</span></li>
      </ul>
    </div>

    <!-- The REview -->
    <div class="product-card gold-accent">
      <svg class="product-icon" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
        <circle cx="11" cy="11" r="9" stroke="#E8A81C" stroke-width="1.5"/>
        <polygon points="8.5,7.5 8.5,14.5 15,11" fill="#E8A81C"/>
      </svg>
      <div class="product-title">The REview</div>
      <div class="product-desc"><em>rentvreview.com</em> — CRE's dedicated video sharing &amp; search platform, launched 2022. Own one of four featured homepage screens for maximum brand presence.</div>
      <ul class="price-list">
        <li class="price-item"><span class="pi-label">1 of 4 homepage screens</span><span class="pi-val">Ask for rates</span></li>
      </ul>
    </div>

  </div>

  <!-- ── CONFERENCES ── -->
  <div class="conf-section" role="region" aria-label="RENTV Conferences">
    <div class="conf-title-block">
      <div class="conf-label">State of the Market</div>
      <div class="conf-title">RENTV<br>Conferences</div>
    </div>
    <div class="conf-divider" aria-hidden="true"></div>
    <div class="conf-events">
      <div class="conf-event">
        <span class="conf-event-name">Arizona</span>
        <span class="conf-event-detail">Oct 2026 · Scottsdale Resort &amp; Spa</span>
      </div>
      <div class="conf-event">
        <span class="conf-event-name">San Diego</span>
        <span class="conf-event-detail">Jan 2027 · Westin Carlsbad</span>
      </div>
      <div class="conf-event">
        <span class="conf-event-name">Greater Los Angeles</span>
        <span class="conf-event-detail">Mar 2027 · Hilton LA/Culver City</span>
      </div>
      <div class="conf-event">
        <span class="conf-event-name">Inland Empire</span>
        <span class="conf-event-detail">May 2027 · Embassy Suites Ontario</span>
      </div>
    </div>
    <div class="conf-divider" aria-hidden="true"></div>
    <div class="conf-price-badge">$2,500 / Event</div>
  </div>

  <!-- ── MORE PRODUCTS ── -->
  <div class="more-products">

    <!-- Podcast -->
    <div class="more-card gold-accent">
      <div class="product-title" style="font-size:11.5px; margin-bottom:4px;">Commercial Real Estate Talk</div>
      <div class="product-desc" style="font-size:9.5px;">Video podcast hosted by <strong>Steve Bloom</strong> + co-host <strong>Arnie Garfinkel</strong>. ~30 min episodes. Up to 4 sponsors per episode — 30-second spot + logo and link.</div>
      <ul class="price-list" style="margin-top:5px;">
        <li class="price-item"><span class="pi-label">Per-episode sponsor (×4 avail.)</span><span class="pi-val">Ask for rates</span></li>
      </ul>
    </div>

    <!-- The REview already shown above; use third slot for Direct Marketing -->
    <div class="more-card blue-accent">
      <div class="product-title" style="font-size:11.5px; margin-bottom:4px;">RENTV Direct Marketing Services</div>
      <div class="product-desc" style="font-size:9.5px;">Custom direct-marketing programs leveraging RENTV's 25-year audience relationships. Tailored outreach, co-branded campaigns, and targeted list activations.</div>
      <ul class="price-list" style="margin-top:5px;">
        <li class="price-item"><span class="pi-label">Custom programs</span><span class="pi-val">Contact us</span></li>
      </ul>
    </div>

    <!-- Sublease.com -->
    <div class="more-card">
      <div class="product-title" style="font-size:11.5px; margin-bottom:4px;">Sublease.com</div>
      <div class="product-desc" style="font-size:9.5px;"><em>"The Commercial Space Marketplace"</em> — list and discover sublease opportunities across the Western US market. Integrated with RENTV's CRE audience network.</div>
      <ul class="price-list" style="margin-top:5px;">
        <li class="price-item"><span class="pi-label">Listings &amp; sponsorships</span><span class="pi-val">Ask for rates</span></li>
      </ul>
    </div>

  </div>

  <!-- ── FOOTER ── -->
  <div class="footer-rule"></div>

  <footer class="footer">
    <!-- Primary contact -->
    <div class="footer-contact">
      <div class="footer-contact-name">Steve Bloom</div>
      <div class="footer-contact-title">President &amp; CEO · RENTV.com, Inc.</div>
      <div class="contact-row">
        <svg width="11" height="11" viewBox="0 0 22 22" fill="none" aria-hidden="true"><path d="M6.6 10.8a13.4 13.4 0 005.6 5.6l1.9-1.9a1 1 0 011-.2c1.1.4 2.3.6 3.5.6a1 1 0 011 1V19a1 1 0 01-1 1C9.6 20 3 13.4 3 5.5a1 1 0 011-1H7a1 1 0 011 1c0 1.2.2 2.4.6 3.5a1 1 0 01-.2 1L6.6 10.8z" stroke="#6B7280" stroke-width="1.6" stroke-linejoin="round"/></svg>
        (310) 213-6409
      </div>
      <div class="contact-row">
        <svg width="11" height="11" viewBox="0 0 22 22" fill="none" aria-hidden="true"><rect x="2" y="5" width="18" height="13" rx="2" stroke="#6B7280" stroke-width="1.6"/><path d="M2 8l9 6 9-6" stroke="#6B7280" stroke-width="1.6" stroke-linejoin="round"/></svg>
        sbloom@rentv.com
      </div>
      <div class="contact-row">
        <svg width="11" height="11" viewBox="0 0 22 22" fill="none" aria-hidden="true"><rect x="2" y="2" width="18" height="18" rx="3" stroke="#6B7280" stroke-width="1.6"/><path d="M7 10v5M7 7v.5" stroke="#6B7280" stroke-width="1.8" stroke-linecap="round"/><path d="M11 15v-3.5A1.5 1.5 0 0114.5 13V15" stroke="#6B7280" stroke-width="1.6" stroke-linecap="round"/><path d="M11 11.5V15" stroke="#6B7280" stroke-width="1.6" stroke-linecap="round"/></svg>
        linkedin.com/company/rentv.com-inc
      </div>
      <div class="contact-row">
        <svg width="11" height="11" viewBox="0 0 22 22" fill="none" aria-hidden="true"><circle cx="11" cy="11" r="9" stroke="#6B7280" stroke-width="1.6"/><path d="M2 11h18M11 2a15 15 0 010 18M11 2a15 15 0 000 18" stroke="#6B7280" stroke-width="1.6" stroke-linecap="round"/></svg>
        rentv.com · rentvreview.com · sublease.com
      </div>
      <div class="contact-row">
        <svg width="11" height="11" viewBox="0 0 22 22" fill="none" aria-hidden="true"><path d="M11 2C7.7 2 5 4.7 5 8c0 5 6 12 6 12s6-7 6-12c0-3.3-2.7-6-6-6z" stroke="#6B7280" stroke-width="1.6"/><circle cx="11" cy="8" r="2" stroke="#6B7280" stroke-width="1.4"/></svg>
        5757 W. Century Blvd, Suite 700, Los Angeles, CA 90045
      </div>
    </div>

    <!-- Vert rule -->
    <div class="footer-vert-rule"></div>

    <!-- Secondary contact -->
    <div class="footer-contact-2">
      <div class="footer-contact-name" style="font-size:11px;">Allen Wolfsheimer</div>
      <div class="footer-contact-title" style="font-size:8.5px;">Senior Vice President</div>
      <div class="contact-row">
        <svg width="11" height="11" viewBox="0 0 22 22" fill="none" aria-hidden="true"><path d="M6.6 10.8a13.4 13.4 0 005.6 5.6l1.9-1.9a1 1 0 011-.2c1.1.4 2.3.6 3.5.6a1 1 0 011 1V19a1 1 0 01-1 1C9.6 20 3 13.4 3 5.5a1 1 0 011-1H7a1 1 0 011 1c0 1.2.2 2.4.6 3.5a1 1 0 01-.2 1L6.6 10.8z" stroke="#6B7280" stroke-width="1.6" stroke-linejoin="round"/></svg>
        (310) 836-9238
      </div>
      <div class="contact-row">
        <svg width="11" height="11" viewBox="0 0 22 22" fill="none" aria-hidden="true"><rect x="2" y="5" width="18" height="13" rx="2" stroke="#6B7280" stroke-width="1.6"/><path d="M2 8l9 6 9-6" stroke="#6B7280" stroke-width="1.6" stroke-linejoin="round"/></svg>
        allenw@rentv.com
      </div>
    </div>

    <!-- Sites column (absorb into footer layout via 4-col grid) -->
    <!-- Sites are embedded in primary contact; 4th col is intentionally empty for spacing -->
    <div></div>
  </footer>

  <!-- Bottom bar -->
  <div class="bottom-bar"></div>

</div>
</body>
</html>