<!DOCTYPE html>
<html lang="en">
<head>
  <link rel="canonical" href="https://www.dougmotel.com/" />
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Doug Motel — Founder, The Nowist Society</title>
  <meta name="description" content="Doug Motel helps people stop rehearsing for their dream life and get on with the show. Founder of The Nowist Society. Author. Speaker. Coach." />
  <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,700;1,400&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet" />
  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --dark:     #1C1E22;
      --darker:   #14161A;
      --teal:     #4FD1C5;
      --teal-dim: #3ab5aa;
      --gold:     #C9A96E;
      --cream:    #F5F0E8;
      --mid:      #2A2D33;
      --muted:    #8A9099;
      --text:     #D8D4CC;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      font-size: 17px;
      -webkit-font-smoothing: antialiased;
    }

    /* TOPBAR */
    .topbar {
      background: var(--darker);
      border-bottom: 1px solid rgba(79,209,197,0.15);
      padding: 14px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .topbar-name {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--cream);
      letter-spacing: 0.02em;
    }
    .topbar-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .topbar-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .topbar-links a:hover { color: var(--teal); }

    /* HERO */
    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      padding: 80px 40px 60px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 80% 40%, rgba(79,209,197,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(201,169,110,0.05) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 980px;
      margin: 0 auto;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 72px;
      align-items: center;
      width: 100%;
    }
    .hero-kicker {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-kicker::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--teal);
    }
    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1.12;
      color: var(--cream);
      margin-bottom: 32px;
      font-weight: 700;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--teal);
    }
    .hero-sub {
      font-size: 18px;
      font-weight: 300;
      color: var(--text);
      margin-bottom: 48px;
      line-height: 1.65;
    }
    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }
    .hero-photo-wrap { position: relative; }
    .hero-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top center;
      border-radius: 4px;
      filter: grayscale(15%);
      border: 1px solid rgba(79,209,197,0.2);
      display: block;
    }
    .hero-photo-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 4px;
      background: linear-gradient(to top, rgba(28,30,34,0.35) 0%, transparent 50%);
      pointer-events: none;
    }

    /* BUTTONS */
    .btn {
      display: inline-block;
      padding: 14px 30px;
      border-radius: 3px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-primary { background: var(--teal); color: var(--darker); }
    .btn-primary:hover { background: var(--teal-dim); transform: translateY(-1px); }
    .btn-secondary { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.25); }
    .btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
    .btn-ghost { background: transparent; color: var(--muted); border: 1px solid rgba(138,144,153,0.3); }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    /* SECTIONS */
    .section { padding: 80px 40px; }
    .section-alt { background: var(--mid); }
    .section-dark { background: var(--darker); }
    .container { max-width: 980px; margin: 0 auto; }
    .section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--teal);
    }

    /* ABOUT */
    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      color: var(--cream);
      margin-bottom: 24px;
      line-height: 1.2;
    }
    .about-text p { margin-bottom: 16px; color: var(--text); }
    .about-text p:last-child { margin-bottom: 0; }

    /* ENTRY CARDS */
    .entry-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .entry-card {
      background: var(--darker);
      border: 1px solid rgba(79,209,197,0.12);
      border-radius: 4px;
      padding: 32px 28px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      transition: border-color 0.2s, transform 0.2s;
    }
    .entry-card:hover { border-color: var(--teal); transform: translateY(-3px); }
    .entry-card-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
    }
    .entry-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: var(--cream);
      margin-bottom: 12px;
      line-height: 1.25;
    }
    .entry-card p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 24px;
    }
    .entry-card-link {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
    }
    .entry-card-link::after { content: '→'; }

    /* TESTIMONIALS */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--dark);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 4px;
      padding: 32px;
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 64px;
      line-height: 1;
      color: var(--teal);
      opacity: 0.3;
      position: absolute;
      top: 16px;
      left: 24px;
    }
    .testimonial-quote {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 24px;
      padding-top: 12px;
    }
    .testimonial-meta { display: flex; align-items: center; gap: 14px; }
    .testimonial-img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid rgba(79,209,197,0.25);
      flex-shrink: 0;
    }
    .testimonial-name { font-weight: 500; font-size: 14px; color: var(--cream); line-height: 1.3; }
    .testimonial-role { font-size: 12px; color: var(--muted); line-height: 1.4; margin-top: 2px; }

    /* MENTORSHIP */
    .mentorship-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .mentorship-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .mentorship-inner > div > p { color: var(--text); margin-bottom: 16px; }
    .mentorship-inner > div > a { margin-top: 8px; }
    .mentorship-quote {
      border-left: 2px solid var(--teal);
      padding: 20px 28px;
      background: rgba(79,209,197,0.04);
      border-radius: 0 4px 4px 0;
    }
    .mentorship-quote p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 18px;
      color: var(--cream);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .mentorship-quote cite { font-size: 13px; color: var(--muted); font-style: normal; }

    /* FOOTER */
    footer {
      background: var(--darker);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 40px;
      text-align: center;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 24px;
      list-style: none;
    }
    .footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--teal); }
    .footer-copy { font-size: 12px; color: rgba(138,144,153,0.5); }

    .teal-rule { border: none; border-top: 1px solid rgba(79,209,197,0.15); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-kicker    { animation: fadeUp 0.5s ease both; animation-delay: 0.1s; }
    .hero-headline  { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
    .hero-sub       { animation: fadeUp 0.6s ease both; animation-delay: 0.35s; }
    .hero-cta-group { animation: fadeUp 0.6s ease both; animation-delay: 0.5s; }
    .hero-photo-wrap{ animation: fadeUp 0.8s ease both; animation-delay: 0.3s; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .topbar { padding: 14px 20px; }
      .topbar-links { display: none; }
      .hero { padding: 48px 24px; min-height: auto; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-photo-wrap { order: -1; max-width: 220px; margin: 0 auto; }
      .section { padding: 60px 24px; }
      .entry-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .mentorship-inner { grid-template-columns: 1fr; gap: 32px; }
    }
  </style>
  <!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NHV0J5WP80"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'G-NHV0J5WP80');
</script>
</head>
<body>

<header class="topbar">
  <span class="topbar-name">Doug Motel</span>
  <ul class="topbar-links">
    <li><a href="#about">About</a></li>
    <li><a href="#start">Get Started</a></li>
    <li><a href="#testimonials">Testimonials</a></li>
    <li><a href="#mentorship">Work with Doug</a></li>
  </ul>
</header>

<section class="hero">
  <div class="hero-inner">
    <div class="hero-left">
      <p class="hero-kicker">Founder, The Nowist Society</p>
      <h1 class="hero-headline">
        Stop rehearsing<br>for your dream life.<br>
        <em>Get on with the show!</em>
      </h1>
      <p class="hero-sub">
        I help people get out of their heads and into their actual lives —
        through books, live events, and one-on-one work. I've been doing it
        for forty years, and I'm currently traveling the globe to scale up
        the Nowist Society.
      </p>
      <div class="hero-cta-group">
        <a href="https://now.nowistsociety.org/" target="_blank" rel="noopener noreferrer" class="btn btn-primary">Free 10-Min Audio</a>
        <a href="https://game.nowistsociety.org/" target="_blank" rel="noopener noreferrer" class="btn btn-secondary">Get the Book</a>
        <a href="https://nowistsociety.org/" target="_blank" rel="noopener noreferrer" class="btn btn-ghost">The Nowist Society</a>
      </div>
    </div>
    <div class="hero-photo-wrap">
      <img
        src="https://nowistsociety.org/wp-content/uploads/2025/01/doug-headshot.jpg"
        alt="Doug Motel"
        class="hero-photo"
      />
    </div>
  </div>
</section>

<hr class="teal-rule" />

<section class="section" id="about">
  <div class="container">
    <p class="section-label">About Doug</p>
    <div class="about-text">
      <h2>Forty years of tips, tricks, and tools for living like it matters.</h2>
      <p>I'm not a teacher. I'm just someone who has spent a lifetime collecting what actually works for getting out of our heads and into our real lives. A lot of personal trial and error has led me on a quest to keep sharing — like a kid with a box of souvenirs — what I learn through workshops, retreats, and one-on-one mentoring.</p>
      <p>Along the way I have written several plays with this theme that I have performed throughout the U.S., U.K., and Europe, made music, painted, acted on TV and Film, and wrote a few non-fiction books. All of it kept pointing at the same thing: the only moment that's ever actually available is this one. Now.</p>
      <p>The Nowist Society is my attempt to scale that idea up — and get as many people as possible playing the game of Now before we completely lose the plot as a species.</p>
    </div>
    <div style="max-width:700px; margin:48px auto 0;">
      <p style="font-size:11px; font-weight:500; letter-spacing:0.2em; text-transform:uppercase; color:#4FD1C5; margin-bottom:16px; display:flex; align-items:center; gap:12px;"><span style="display:block; width:24px; height:1px; background:#4FD1C5;"></span>TEDx Talk</p>
      <div style="position:relative; padding-bottom:56.25%; height:0; overflow:hidden; border-radius:4px; border:1px solid rgba(79,209,197,0.2);">
        <iframe
          src="https://www.youtube.com/embed/dK47BYOyD4I"
          style="position:absolute; top:0; left:0; width:100%; height:100%; border:none;"
          allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
          allowfullscreen>
        </iframe>
      </div>
      <p style="font-size:13px; color:#8A9099; margin-top:14px; text-align:center; letter-spacing:0.05em;">Using the Present to Create Our Future &middot; TEDxLongDock</p>
    </div>
  </div>
</section>

<hr class="teal-rule" />

<section class="section section-alt" id="start">
  <div class="container">
    <p class="section-label">Where to Start</p>
    <div class="entry-grid">

      <a href="https://now.nowistsociety.org/" target="_blank" rel="noopener noreferrer" class="entry-card">
        <span class="entry-card-tag">Free · 10 Minutes</span>
        <h3>What's Happening Now Exercise</h3>
        <p>A free audio exercise that moves you from living in your head to living in real time. No clearing your mind required.</p>
        <span class="entry-card-link">Get the free audio</span>
      </a>

      <a href="https://game.nowistsociety.org/" target="_blank" rel="noopener noreferrer" class="entry-card">
        <span class="entry-card-tag">Book · All Formats</span>
        <h3>Playing the Game of Now</h3>
        <p>Part memoir, part field guide. Practical, funny, and field-tested for over forty years. For people who already know they "should" be present but can't seem to make it stick.</p>
        <span class="entry-card-link">Get the book</span>
      </a>

      <a href="https://birthdayaudit.com/" target="_blank" rel="noopener noreferrer" class="entry-card">
        <span class="entry-card-tag">Workbook + Audio</span>
        <h3>The Birthday Audit</h3>
        <p>An annual review tied to your birthday. Fourteen chapters of honest retrospection and intentional forward design — with audio coaching from me at every step.</p>
        <span class="entry-card-link">Start your audit</span>
      </a>

      <a href="/mentoring" class="entry-card">
        <span class="entry-card-tag">One-on-One · $150</span>
        <h3>Private One-on-One</h3>
        <p>A single diagnostic session across all eight areas of your life. We find the broke spoke — the one area quietly draining everything else — and you leave with one clear move that's actually yours.</p>
        <span class="entry-card-link">Book a session</span>
      </a>

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

<hr class="teal-rule" />

<section class="section" id="testimonials">
  <div class="container">
    <p class="section-label">What People Say</p>
    <div class="testimonials-grid">

      <div class="testimonial-card">
        <p class="testimonial-quote">Your participation helped us score one of the highest overall satisfaction ratings ever.</p>
        <div class="testimonial-meta">
          <img src="https://dougmotel.com/wp-content/uploads/2023/03/vicki-headshot-removebg-preview-180x180.png" alt="Vicki Osman" class="testimonial-img" />
          <div>
            <div class="testimonial-name">Vicki Osman</div>
            <div class="testimonial-role">CTIS, American Bus Association, Marketplace Conference</div>
          </div>
        </div>
      </div>

      <div class="testimonial-card">
        <p class="testimonial-quote">Doug Motel makes "conscious comedy" — he makes us laugh and he makes us think.</p>
        <div class="testimonial-meta">
          <img src="https://dougmotel.com/wp-content/uploads/2023/03/marianne-180x180.png" alt="Marianne Williamson" class="testimonial-img" />
          <div>
            <div class="testimonial-name">Marianne Williamson</div>
            <div class="testimonial-role">#1 New York Times Best-Selling Author</div>
          </div>
        </div>
      </div>

      <div class="testimonial-card">
        <p class="testimonial-quote">The experience of having Doug as a coach has quite literally transformed my life — from a dreamer to a doer, from an artist blocked to an artist on a roll.</p>
        <div class="testimonial-meta">
          <img src="https://dougmotel.com/wp-content/uploads/2023/03/Patricia-Karst-cutout-180x180.png" alt="Patrice Karst" class="testimonial-img" />
          <div>
            <div class="testimonial-name">Patrice Karst</div>
            <div class="testimonial-role">International bestselling author, The Invisible String</div>
          </div>
        </div>
      </div>

      <div class="testimonial-card">
        <p class="testimonial-quote">The evaluations were unanimously positive. Because of you, our team has experienced a way to live life more fully. That is a special gift.</p>
        <div class="testimonial-meta">
          <img src="https://dougmotel.com/wp-content/uploads/2023/03/john-sallot-180x180.jpg" alt="John Sallot" class="testimonial-img" />
          <div>
            <div class="testimonial-name">John Sallot</div>
            <div class="testimonial-role">Program Manager, APLA</div>
          </div>
        </div>
      </div>

      <div class="testimonial-card">
        <p class="testimonial-quote">Doug is one of our most requested speakers with the best reviews. Engaging, humorous — I'd highly recommend him.</p>
        <div class="testimonial-meta">
          <img src="https://dougmotel.com/wp-content/uploads/2023/04/Susan-Sweeney-180x180.png" alt="Susan Sweeney" class="testimonial-img" />
          <div>
            <div class="testimonial-name">Susan Sweeney</div>
            <div class="testimonial-role">Founder, eLearning U</div>
          </div>
        </div>
      </div>

      <div class="testimonial-card">
        <p class="testimonial-quote">His ability to use humor as a healing tool is evident. Doug has an unusually sensitive and compassionate manner.</p>
        <div class="testimonial-meta">
          <img src="https://dougmotel.com/wp-content/uploads/2023/03/jody-180x180.jpg" alt="Jody Schor" class="testimonial-img" />
          <div>
            <div class="testimonial-name">Jody Schor, Ed.D</div>
            <div class="testimonial-role">Clinical Director, Los Angeles Center for Living</div>
          </div>
        </div>
      </div>

      <div class="testimonial-card">
        <p class="testimonial-quote">Thought-provoking, very funny, carrying a meaningful message. Life-enhancing. It was just what the doctor ordered.</p>
        <div class="testimonial-meta">
          <img src="https://dougmotel.com/wp-content/uploads/2023/03/anne-marie.westfall-Edited-1-180x180.jpg" alt="Annemarie Westfall" class="testimonial-img" />
          <div>
            <div class="testimonial-name">Annemarie Westfall</div>
            <div class="testimonial-role">Medical Social Worker, Kaiser Permanente</div>
          </div>
        </div>
      </div>

      <div class="testimonial-card">
        <p class="testimonial-quote">Doug's gift is in supporting you to accomplish your goals with consistent, achievable actions. He helps you maximize your ability to reach your dreams.</p>
        <div class="testimonial-meta">
          <img src="https://dougmotel.com/wp-content/uploads/2023/03/dave-egan-180x180.jpg" alt="Dave Egan" class="testimonial-img" />
          <div>
            <div class="testimonial-name">Dave Egan</div>
            <div class="testimonial-role">President, Scripts Direct</div>
          </div>
        </div>
      </div>

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

<hr class="teal-rule" />

<section class="section section-dark" id="mentorship">
  <div class="container">
    <p class="section-label">Work with Doug</p>
    <div class="mentorship-inner">
      <div>
        <h2>One-on-one, for people who are ready.</h2>
        <p>We all have a story of "me" — shaped by family, culture, the geography we were born into. Most of the time that story runs quietly in the background, making your choices for you. This work is about finding out which parts of that story are actually yours.</p>
        <p>The Wheel Session is where we start. One honest conversation, all eight areas of your life, one clear move. Sixty to ninety minutes. No ongoing commitment required.</p>
        <a href="/mentoring" class="btn btn-primary">Learn More & Book</a>
      </div>
      <div class="mentorship-quote">
        <p>"From a dreamer to a doer, from an artist blocked to an artist on a roll. If you are ready to have your life changed in miraculous ways — Doug helps you do it."</p>
        <cite>— Patrice Karst, International Bestselling Author</cite>
      </div>
    </div>
  </div>
</section>

<footer>
  <ul class="footer-links">
    <li><a href="https://nowistsociety.org/" target="_blank" rel="noopener noreferrer">The Nowist Society</a></li>
    <li><a href="https://game.nowistsociety.org/" target="_blank" rel="noopener noreferrer">Playing the Game of Now</a></li>
    <li><a href="https://birthdayaudit.com/" target="_blank" rel="noopener noreferrer">The Birthday Audit</a></li>
    <li><a href="https://now.nowistsociety.org/" target="_blank" rel="noopener noreferrer">Free Audio</a></li>
    <li><a href="https://www.patreon.com/cw/dougmotel" target="_blank" rel="noopener noreferrer">Patreon</a></li>
    <li><a href="https://www.instagram.com/dougmotel/" target="_blank" rel="noopener noreferrer">Instagram</a></li>
    <li><a href="https://www.facebook.com/mrdougmotel/" target="_blank" rel="noopener noreferrer">Facebook</a></li>
  </ul>
  <p class="footer-copy">© Doug Motel · Founder, The Nowist Society · Go take authorship.</p>
</footer>

</body>
</html>