Source — /var/www/sites/acme/index.html

/var/www/sites/acme/index.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Acme Coffee Roasters</title>
  <style>
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #2c1e14;
      background: #faf6f0;
    }
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }
    /* Hero */
    .hero {
      background: linear-gradient(135deg, #3c2415, #5a3a2a);
      color: #f5ede6;
      text-align: center;
      padding: 120px 24px 80px;
    }
    .hero h1 {
      font-size: 3.5rem;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }
    .hero p {
      font-size: 1.4rem;
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.9;
    }
    /* Sections */
    section {
      padding: 80px 0;
    }
    h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 48px;
      color: #3c2415;
    }
    /* Beans cards */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      padding: 32px 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      text-align: center;
      transition: transform 0.2s;
    }
    .card:hover {
      transform: translateY(-4px);
    }
    .card h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
      color: #5a3a2a;
    }
    .card p {
      color: #6b4f3a;
    }
    /* About */
    .about {
      background: #eee6dc;
      text-align: center;
    }
    .about p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.15rem;
      color: #3c2415;
    }
    /* Contact */
    .contact {
      text-align: center;
    }
    .contact p {
      font-size: 1.2rem;
      margin-bottom: 8px;
    }
    .contact a {
      color: #5a3a2a;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 2px solid #c4a88a;
    }
    .contact a:hover {
      border-color: #5a3a2a;
    }
    /* Footer */
    footer {
      background: #2c1e14;
      color: #c4a88a;
      text-align: center;
      padding: 32px 24px;
      font-size: 0.9rem;
    }
  </style>
</head>
<body>
  <!-- Hero -->
  <header class="hero">
    <div class="container">
      <h1>Acme Coffee Roasters</h1>
      <p>Small-batch, ethically sourced — roasted to perfection in Portland since 2015.</p>
    </div>
  </header>

  <!-- Our Beans -->
  <section id="beans">
    <div class="container">
      <h2>Our Beans</h2>
      <div class="cards">
        <div class="card">
          <h3>Ethiopian Yirgacheffe</h3>
          <p>Bright, floral, and complex with notes of blueberry and jasmine. A light roast that sings.</p>
        </div>
        <div class="card">
          <h3>Colombian Supremo</h3>
          <p>Smooth caramel sweetness with a hint of red apple. A balanced medium roast for any time of day.</p>
        </div>
        <div class="card">
          <h3>Sumatra Mandheling</h3>
          <p>Deep, earthy, and full-bodied with dark chocolate and cedar undertones. Our darkest roast.</p>
        </div>
      </div>
    </div>
  </section>

  <!-- About -->
  <section class="about" id="about">
    <div class="container">
      <h2>About Us</h2>
      <p>Acme Coffee Roasters was born in a small garage in southeast Portland. We travel the world to build direct relationships with farmers, paying well above fair-trade prices and sharing knowledge about sustainable growing practices. Every batch is roasted on our vintage 1950s Probat drum — because some things are worth doing the old way. The result? Coffee that's good for your cup, good for the planet, and good for the people who grow it.</p>
    </div>
  </section>

  <!-- Contact -->
  <section class="contact" id="contact">
    <div class="container">
      <h2>Get in Touch</h2>
      <p>We'd love to hear from you — whether it's a wholesale inquiry, a collaboration idea, or just to say hello.</p>
      <p><a href="mailto:hello@acmecoffee.com">hello@acmecoffee.com</a></p>
    </div>
  </section>

  <footer>
    <div class="container">
      <p>&copy; 2025 Acme Coffee Roasters &mdash; Portland, Oregon</p>
    </div>
  </footer>
</body>
</html>