<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Somaesthetic Design</title>
  <link rel="stylesheet" href="styles.css" />
</head>
<body>

  <header class="hero">
    <div class="hero-content">
      <img src="book-cover.jpg" alt="Somaesthetic Design Book Cover" class="book-cover" />

      <div class="hero-text">
        <h1>Somaesthetic Design</h1>
        <p class="tagline">
          Exploring embodiment, perception, and human-centered design.
        </p>

        <div class="button-group">
          <a href="https://your-print-book-link.com" target="_blank" class="button primary">
            Buy Print Edition
          </a>

          <a href="https://your-open-access-pdf-link.com" target="_blank" class="button secondary">
            Download Open Access PDF
          </a>
        </div>
      </div>
    </div>
  </header>

  <main>

    <section class="section">
      <div class="container narrow">
        <h2>About the Book</h2>
        <p>
          Replace this paragraph with your abstract or short description of the book.
          This is a good place to explain the central themes, audience, and scholarly
          significance of the project.
        </p>
      </div>
    </section>

    <section class="section alt">
      <div class="container">
        <h2>Authors</h2>

        <div class="authors-grid">

          <div class="author-card">
            <h3>Stephen Neely</h3>
            <p>
              Stephen Neely, PhD, is Associate Professor of Music and Director of
              Graduate Studies at Carnegie Mellon University. His work explores
              embodiment, music, pedagogy, and somaesthetic practice.
            </p>
          </div>

          <div class="author-card">
            <h3>Co-Author Name</h3>
            <p>
              Add a short biography for the second author here.
            </p>
          </div>

        </div>
      </div>
    </section>

    <section class="section">
      <div class="container narrow">
        <h2>Contact</h2>

        <p>
          For media inquiries, speaking invitations, course adoption, or general
          questions, please contact:
        </p>

        <p class="contact-email">
          <a href="mailto:your-email@cmu.edu">your-email@cmu.edu</a>
        </p>
      </div>
    </section>

  </main>

  <footer>
    <p>
      © 2026 Somaesthetic Design
    </p>
  </footer>

</body>
</html>