← back to Beverlyhillsbutler

public/index.html

433 lines

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Beverly Hills Butler — On-Demand Concierge Service | Coming Soon</title>
  <meta name="description" content="Beverly Hills Butler delivers premium concierge and on-demand service to Beverly Hills, the 818, and the Boulevard. Early access now open.">

  <!-- Anti-flash inline script for dark/light theme -->
  <script>
    (function() {
      var saved = localStorage.getItem('bhb-theme');
      if (saved === 'dark' || (!saved && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
        document.documentElement.setAttribute('data-theme', 'dark');
      }
    })();
  </script>

  <style>
    :root {
      --bg: #f9f7f4;
      --ink: #1a1a1a;
      --ink-soft: #4a4a4a;
      --ink-faint: #9a9a9a;
      --line: #e2ddd8;
      --card-bg: #ffffff;
      --header-bg: rgba(249, 247, 244, 0.92);
      --accent: #8b6f4e;
      --accent-light: #c4a882;
    }

    [data-theme="dark"] {
      --bg: #111010;
      --ink: #f0ede8;
      --ink-soft: #b8b2aa;
      --ink-faint: #6a6460;
      --line: #2a2826;
      --card-bg: #1c1a18;
      --header-bg: rgba(17, 16, 16, 0.92);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Georgia', 'Times New Roman', serif;
      background: var(--bg);
      color: var(--ink);
      min-height: 100vh;
      transition: background 0.25s, color 0.25s;
    }

    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: var(--header-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 60px;
    }

    .logo {
      font-family: 'Georgia', serif;
      font-size: 1.1rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
    }

    .logo span {
      color: var(--accent);
    }

    .theme-toggle {
      background: none;
      border: 1px solid var(--line);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-soft);
      transition: border-color 0.2s, color 0.2s;
    }

    .theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

    .theme-toggle .icon-sun { display: none; }
    .theme-toggle .icon-moon { display: block; }
    [data-theme="dark"] .theme-toggle .icon-sun { display: block; }
    [data-theme="dark"] .theme-toggle .icon-moon { display: none; }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(139, 111, 78, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .eyebrow {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: clamp(2.4rem, 6vw, 5.5rem);
      font-weight: 400;
      letter-spacing: -0.01em;
      line-height: 1.08;
      color: var(--ink);
      margin-bottom: 1rem;
      max-width: 720px;
    }

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

    .hero-subtitle {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 1rem;
      color: var(--ink-soft);
      line-height: 1.65;
      max-width: 480px;
      margin: 1.5rem auto 3rem;
      font-weight: 300;
    }

    /* CTA */
    .cta-form {
      display: flex;
      gap: 0.75rem;
      max-width: 420px;
      width: 100%;
      margin: 0 auto;
    }

    .cta-form input[type="email"] {
      flex: 1;
      padding: 0.85rem 1.2rem;
      font-size: 0.9rem;
      border: 1px solid var(--line);
      border-radius: 2px;
      background: var(--card-bg);
      color: var(--ink);
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
    }

    .cta-form input[type="email"]:focus { border-color: var(--accent); }
    .cta-form input[type="email"]::placeholder { color: var(--ink-faint); }

    .cta-form button {
      padding: 0.85rem 1.6rem;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .cta-form button:hover { background: var(--accent-light); }

    .cta-note {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.72rem;
      color: var(--ink-faint);
      margin-top: 0.9rem;
      letter-spacing: 0.04em;
    }

    /* Service pillars */
    .pillars {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1px;
      background: var(--line);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .pillar {
      background: var(--bg);
      padding: 3rem 2rem;
      text-align: center;
    }

    .pillar-icon {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      display: block;
    }

    .pillar h3 {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.6rem;
    }

    .pillar p {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.82rem;
      color: var(--ink-soft);
      line-height: 1.6;
      font-weight: 300;
    }

    /* Coverage */
    .coverage {
      padding: 5rem 2rem;
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .coverage h2 {
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 1rem;
      color: var(--ink);
    }

    .coverage p {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.9rem;
      color: var(--ink-soft);
      line-height: 1.7;
      font-weight: 300;
    }

    .area-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .area-tag {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border: 1px solid var(--line);
      border-radius: 20px;
      color: var(--ink-soft);
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 2rem;
      text-align: center;
    }

    footer p {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.75rem;
      color: var(--ink-faint);
      letter-spacing: 0.04em;
    }

    footer a {
      color: var(--accent);
      text-decoration: none;
    }

    #success-msg {
      display: none;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.85rem;
      color: var(--accent);
      margin-top: 1rem;
      letter-spacing: 0.05em;
    }

    @media (max-width: 480px) {
      .cta-form { flex-direction: column; }
      .hero-title { font-size: 2.2rem; }
    }
  </style>
    <link rel="icon" type="image/svg+xml" href="/favicon.svg">
  </head>
<body>

  <header>
    <a class="logo" href="/">Beverly Hills <span>Butler</span></a>
    <button class="theme-toggle" aria-label="Toggle theme" onclick="toggleTheme()">
      <svg class="icon-sun" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
        <circle cx="12" cy="12" r="5"/><line x1="12" y1="1" x2="12" y2="3"/><line x1="12" y1="21" x2="12" y2="23"/>
        <line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/>
        <line x1="1" y1="12" x2="3" y2="12"/><line x1="21" y1="12" x2="23" y2="12"/>
        <line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>
      </svg>
      <svg class="icon-moon" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
        <path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
      </svg>
    </button>
  </header>

  <main>
    <section class="hero">
      <p class="eyebrow">Coming Soon</p>
      <h1 class="hero-title">Your <em>personal butler,</em><br>on demand.</h1>
      <p class="hero-subtitle">
        White-glove concierge service for Beverly Hills, the San Fernando Valley,
        and Ventura Boulevard. From errands to estate management — we handle it.
      </p>

      <form class="cta-form" onsubmit="handleSubmit(event)">
        <input type="email" id="email-input" placeholder="your@email.com" required autocomplete="email">
        <button type="submit">Early Access</button>
      </form>
      <p class="cta-note">No spam. First to know when we launch.</p>
      <p id="success-msg">You're on the list. We'll be in touch.</p>
    </section>

    <section class="pillars">
      <div class="pillar">
        <span class="pillar-icon">&#9673;</span>
        <h3>Errands & Delivery</h3>
        <p>Grocery runs, pharmacy pickups, dry cleaning, specialty sourcing — same day.</p>
      </div>
      <div class="pillar">
        <span class="pillar-icon">&#9633;</span>
        <h3>Home Management</h3>
        <p>Coordinate vendors, manage household staff, oversee repairs and deliveries.</p>
      </div>
      <div class="pillar">
        <span class="pillar-icon">&#9651;</span>
        <h3>Event & Travel</h3>
        <p>Reservations, itineraries, private transport, and on-site event support.</p>
      </div>
      <div class="pillar">
        <span class="pillar-icon">&#9670;</span>
        <h3>Business Services</h3>
        <p>Executive assistance, document runs, office errands, client gifting.</p>
      </div>
    </section>

    <section class="coverage">
      <h2>Serving greater Los Angeles</h2>
      <p>
        Beverly Hills and the Westside. The 818 corridor from Studio City to Calabasas.
        Ventura Boulevard from Universal City to Woodland Hills.
        More territories launching through 2026.
      </p>
      <div class="area-tags">
        <span class="area-tag">Beverly Hills</span>
        <span class="area-tag">Bel Air</span>
        <span class="area-tag">West Hollywood</span>
        <span class="area-tag">Studio City</span>
        <span class="area-tag">Sherman Oaks</span>
        <span class="area-tag">Encino</span>
        <span class="area-tag">Tarzana</span>
        <span class="area-tag">Calabasas</span>
        <span class="area-tag">Ventura Blvd</span>
      </div>
    </section>
  </main>

  <footer>
    <p>
      &copy; 2026 Beverly Hills Butler &nbsp;&middot;&nbsp;
      <a href="mailto:info@beverlyhillsbutler.com">info@beverlyhillsbutler.com</a>
    </p>
  </footer>

  <script>
    function toggleTheme() {
      var current = document.documentElement.getAttribute('data-theme');
      var next = current === 'dark' ? 'light' : 'dark';
      document.documentElement.setAttribute('data-theme', next);
      localStorage.setItem('bhb-theme', next);
    }

    function handleSubmit(e) {
      e.preventDefault();
      var email = document.getElementById('email-input').value;
      // Store locally — backend integration on launch
      var leads = JSON.parse(localStorage.getItem('bhb-leads') || '[]');
      leads.push({ email: email, ts: new Date().toISOString() });
      localStorage.setItem('bhb-leads', JSON.stringify(leads));
      document.getElementById('success-msg').style.display = 'block';
      document.querySelector('.cta-form').style.opacity = '0.4';
      document.querySelector('.cta-form').style.pointerEvents = 'none';
      document.querySelector('.cta-note').style.display = 'none';
    }
  </script>

</body>
</html>