/* ===== RESET ===== */
    @media (max-width: 600px) {
  body h1 {
    font-size: 40px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 16px;
  }
}
  @media (max-width: 600px) {
  nav .links {
    display: flex;
    flex-direction: row;
    gap: 2px;
  }

  nav .links a {
    font-size: 10px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}

  p {
    font-size: 13px;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.8;
  }
}
html, body {
  overflow-x: hidden;
}


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #f6f5f3;
      --text: #111;
      --muted: rgba(0,0,0,0.55);
      --line: rgba(0,0,0,0.08);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      animation: fadeIn 1.2s ease;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ===== NAV ===== */
    nav {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      padding: 28px 40px;
      font-size: 13px;
      letter-spacing: 0.08em;
    }

    nav .brand {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      letter-spacing: 0.15em;
    }

    nav .links a {
      margin-left: 28px;
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }

    nav .links a:hover {
      opacity: 1;
    }

    /* ===== DIVIDER ===== */
    .divider {
      width: 100%;
      height: 1px;
      background: var(--line);
    }

    /* ===== HERO ===== */
    main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(56px, 9vw, 110px);
      font-weight: 400;
      letter-spacing: 0.2em;
      margin-bottom: 28px;
    }

    p {
      max-width: 520px;
      margin: 0 auto;
      font-size: 14px;
      line-height: 1.9;
      color: var(--muted);
    }

    /* ===== FOOTER ===== */
    footer {
      padding: 28px 40px;
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
    }

    /* ===== MOTION ===== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @media (max-width: 768px) {
      nav {
        padding: 20px 24px;
      }
      footer {
        padding: 20px 24px;
        flex-direction: column;
        gap: 8px;
      }
    }

.home-motion {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.covers {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0.08;
}

.covers img {
  width: 160px;
  filter: grayscale(100%);
}

body {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .covers {
    left: 50%;
    transform: translateX(-50%);
    animation: scrollY 50s linear infinite;
  }

  @keyframes scrollY {
    from { transform: translate(-50%, 0); }
    to   { transform: translate(-50%, -50%); }
  }
}
@media (min-width: 601px) {
  .covers-left {
    left: -15%;
    top: 100%;
    transform: rotate(45deg);
    animation: driftUp 70s linear infinite;
  }

  .covers-right {
    right: -15%;
    bottom: 100%;
    transform: rotate(45deg);
    animation: driftDown 70s linear infinite;
  }

  @keyframes driftUp {
    from { transform: rotate(45deg) translateY(0); }
    to   { transform: rotate(45deg) translateY(-200%); }
  }

  @keyframes driftDown {
    from { transform: rotate(45deg) translateY(0); }
    to   { transform: rotate(45deg) translateY(200%); }
  }
}
