/* ================================
   Neo-Slow — minimalist landing CSS
   ================================ */

   @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@300;400;500&display=swap');

   :root {
     --bg: #f9f9f6;
     --text: #222;
     --subtle: #555;
     --accent: #c49b5f; /* soft ocher */
   }
   
   * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }
   
   html, body {
     height: 100%;
     font-family: 'Inter', sans-serif;
     background: var(--bg);
     color: var(--text);
     display: flex;
     align-items: center;
     justify-content: center;
   }
   
   main {
     text-align: center;
     max-width: 500px;
     padding: 2rem;
   }
   
   h1 {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2.6em;
     letter-spacing: 0.03em;
     margin-bottom: 0.2em;
   }
   
   p {
     font-size: 1.1em;
     color: var(--subtle);
     line-height: 1.6em;
   }
   
   em {
     color: var(--accent);
   }
   
   footer {
     margin-top: 2em;
     font-size: 0.8em;
     color: #888;
   }
   